From: Bill Erickson Date: Thu, 20 Aug 2015 04:37:13 +0000 (-0400) Subject: JBAS-769 CHS title/author fix reversed X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ad473c0cf3821ccaf8510a331fcd2ec3f0c8c513;p=working%2FEvergreen.git JBAS-769 CHS title/author fix reversed Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/web/opac/extras/circ/alt_holds_print.js b/Open-ILS/web/opac/extras/circ/alt_holds_print.js index c140d95f4c..21e8971ae0 100644 --- a/Open-ILS/web/opac/extras/circ/alt_holds_print.js +++ b/Open-ILS/web/opac/extras/circ/alt_holds_print.js @@ -35,8 +35,8 @@ function get_marc_bits(marcxml) { ); return { - title : m100a + ' ' + m100c, - author : m245a + ' ' + m245b + author : m100a + ' ' + m100c, + title : m245a + ' ' + m245b }; }