From 762a03fca1e7b5b0c37a4a0715a1dc2d84b9200a Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 5 Aug 2019 17:23:45 +0100 Subject: [PATCH] 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 --- C4/HoldsQueue.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/HoldsQueue.pm b/C4/HoldsQueue.pm index 1a4e334452..774e247738 100755 --- a/C4/HoldsQueue.pm +++ b/C4/HoldsQueue.pm @@ -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 -- 2.20.1