From ede3bff586c12ea76c2b02203c467ffcf7d8f0f7 Mon Sep 17 00:00:00 2001 From: haneul Date: Tue, 24 Nov 2009 06:10:02 +0000 Subject: [PATCH] #18428031 : fixed a javascript error occurred if browser_title contains special characters, git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6963 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/admin/tpl/config.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/admin/tpl/config.html b/modules/admin/tpl/config.html index 5aaa6c305..219d5295c 100644 --- a/modules/admin/tpl/config.html +++ b/modules/admin/tpl/config.html @@ -13,7 +13,7 @@ var obj= xGetElementById('_'+id); var sObj = xGetElementById(id); sObj.value = module_srl; - obj.value = browser_title+' ('+mid+')'; + obj.value = decodeURIComponent(browser_title.replace(/\+/g," "))+' ('+mid+')'; } var pwd = '{$pwd}'; @@ -53,7 +53,7 @@
{$lang->start_module}
- {$lang->cmd_select} + {$lang->cmd_select}