From 31f497a31cad12e2f68e4068781d93a1138aa240 Mon Sep 17 00:00:00 2001 From: phasefx Date: Fri, 16 Dec 2005 20:07:51 +0000 Subject: [PATCH] pass the session to the test URLs git-svn-id: svn://svn.open-ils.org/ILS/trunk@2423 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/main/menu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/main/menu.js b/Open-ILS/xul/staff_client/server/main/menu.js index 38dda01028..9e925d8483 100644 --- a/Open-ILS/xul/staff_client/server/main/menu.js +++ b/Open-ILS/xul/staff_client/server/main/menu.js @@ -92,13 +92,13 @@ main.menu.prototype = { 'cmd_test_html' : [ ['command','keypress'], function() { - obj.set_tab(urls.test_html,{},{}); + obj.set_tab(urls.test_html + '?session='+obj.w.escape(session),{},{}); } ], 'cmd_test_xul' : [ ['command','keypress'], function() { - obj.set_tab(urls.test_xul,{},{}); + obj.set_tab(urls.test_xul + '?session='+obj.w.escape(session),{},{}); } ], 'cmd_console' : [ -- 2.43.2