From: senator Date: Fri, 5 Nov 2010 17:02:35 +0000 (+0000) Subject: Address https://bugs.launchpad.net/evergreen/2.0/+bug/670734 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2281a0a2a7d07a4909599d4641a6c7dc6543a561;p=evergreen%2Ftadl.git Address https://bugs.launchpad.net/evergreen/2.0/+bug/670734 Code called by the xul menuitem's oncommand referred to a constant that didn't exist, but the intention was clear enough, so this should fix it. git-svn-id: svn://svn.open-ils.org/ILS/trunk@18622 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/chrome/content/main/constants.js b/Open-ILS/xul/staff_client/chrome/content/main/constants.js index 0cb38829b4..459cd6542a 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/constants.js @@ -335,6 +335,7 @@ var api = { 'MARC_XML_TEMPLATE_RETRIEVE' : { 'app' : 'open-ils.cat', 'method' : 'open-ils.cat.biblio.marc_template.retrieve', 'secure' : false }, 'MARC_XML_TEMPLATE_LIST' : { 'app' : 'open-ils.cat', 'method' : 'open-ils.cat.marc_template.types.retrieve', 'secure' : false }, 'MERGE_RECORDS' : { 'app' : 'open-ils.cat', 'method' : 'open-ils.cat.biblio.records.merge' }, + 'MFHD_XML_RECORD_CREATE' : { 'app': 'open-ils.cat', 'method': 'open-ils.cat.serial.record.xml.create' }, 'PATRON_BARCODE_EXISTS' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.barcode.exists' }, 'PATRON_BARCODE_EXISTS.authoritative' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.barcode.exists.authoritative' }, 'RECALCULATE_STANDING_PENALTIES' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.user.penalties.update' },