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=3bcbed17c093af2fd31376c0c83c4e8cc9e54f40;p=Evergreen.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 Signed-off-by: Ben Shum --- 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 3addc9c53c..db71bfdae5 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,