summaryrefslogtreecommitdiffstats
path: root/frontends/php/js
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-05-08 13:07:14 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-05-08 13:07:14 +0000
commit161b61527272e53b75ff14697684f75c7872bdb6 (patch)
tree8f85159f839ceec935d6a9a16db8ffe5115f4442 /frontends/php/js
parent6ca88367efa0174e68b6da1ff81b40f002550f10 (diff)
downloadzabbix-161b61527272e53b75ff14697684f75c7872bdb6.tar.gz
zabbix-161b61527272e53b75ff14697684f75c7872bdb6.tar.xz
zabbix-161b61527272e53b75ff14697684f75c7872bdb6.zip
- [DEV-137] fixes in import/export (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5688 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/js')
-rw-r--r--frontends/php/js/common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/js/common.js b/frontends/php/js/common.js
index d3cd448d..ba8663fd 100644
--- a/frontends/php/js/common.js
+++ b/frontends/php/js/common.js
@@ -611,7 +611,7 @@ function moveListBoxSelectedItem(formname,objname,from,to,action){
if(action.toLowerCase() == 'add'){
result &= create_var(formname, objname+'['+from.options[i].value+']', from.options[i].value, false);
}
- else if(String.toLowerCase(action) == 'rmv'){
+ else if(action.toLowerCase() == 'rmv'){
result &= remove_element(objname+'['+from.options[i].value+']','input');
}