Bug 11529: (RM follow-up) Fix missing comma in query
Looks like we introduced an error during a rebase somewhere on bug 11529. This patch siply replaces a missng comma in the SQL query for C4::HoldsQueue::GetHoldsQueueItems. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
cf0f57b437
commit
762a03fca1
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ sub GetHoldsQueueItems {
|
|||
my $query = q/SELECT tmp_holdsqueue.*, biblio.author, items.ccode, items.itype, biblioitems.itemtype, items.location,
|
||||
items.enumchron, items.cn_sort, biblioitems.publishercode,
|
||||
biblio.copyrightdate, biblio.subtitle, biblio.medium,
|
||||
biblio.part_number, biblio.part_name
|
||||
biblio.part_number, biblio.part_name,
|
||||
biblioitems.publicationyear, biblioitems.pages, biblioitems.size,
|
||||
biblioitems.isbn, items.copynumber
|
||||
FROM tmp_holdsqueue
|
||||
|
|
Loading…
Reference in a new issue