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=f3775a664fa8af0322a501713485a1fef5b911bf;p=evergreen%2Ftadl.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 f10ba71b05..f9993cf01b 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,