From: Bill Erickson Date: Tue, 17 Dec 2013 14:57:08 +0000 (-0500) Subject: LP#1261777 repair cloned addr owner link X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d249dc867fe6fdcb3b97ad65b98158608bec9e7c;p=working%2FEvergreen.git LP#1261777 repair cloned addr owner link Repair reference to undefined variable (offline) in spawn_editor() function, which is responsible for opening the tab for the linked patron. Variable should be "offlineStrings". Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/xul/staff_client/chrome/content/main/menu.js b/Open-ILS/xul/staff_client/chrome/content/main/menu.js index 4d923c2c4e..1904936829 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/menu.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/menu.js @@ -524,7 +524,7 @@ main.menu.prototype = { {}, { 'show_print_button' : true , - 'tab_name' : offline.getString('menu.cmd_patron_register.related.tab'), + 'tab_name' : offlineStrings.getString('menu.cmd_patron_register.related.tab'), 'passthru_content_params' : { 'spawn_search' : function(s) { obj.spawn_search(s); }, 'spawn_editor' : spawn_editor,