diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-22 15:12:52 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-22 15:12:52 +0000 |
| commit | 67caec0a308312b19cc85f6c09e482d717c0f252 (patch) | |
| tree | 5566dedd907341525bfa9f8c595812d69ab67033 /frontends/php/popup_httpstep.php | |
| parent | eb9c8c4c00ab339b6e105b35d65f3c99dc5cb677 (diff) | |
| download | zabbix-67caec0a308312b19cc85f6c09e482d717c0f252.tar.gz zabbix-67caec0a308312b19cc85f6c09e482d717c0f252.tar.xz zabbix-67caec0a308312b19cc85f6c09e482d717c0f252.zip | |
- improved JS supporting for IE
git-svn-id: svn://svn.zabbix.com/trunk@3909 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/popup_httpstep.php')
| -rw-r--r-- | frontends/php/popup_httpstep.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/popup_httpstep.php b/frontends/php/popup_httpstep.php index 2b4ebe5f..3773a5a3 100644 --- a/frontends/php/popup_httpstep.php +++ b/frontends/php/popup_httpstep.php @@ -84,7 +84,7 @@ function add_httpstep(formname,name,timeout,url,posts,required) if(!form) { - window.close(); + close_window(); return false; } @@ -95,7 +95,7 @@ function add_httpstep(formname,name,timeout,url,posts,required) add_var_to_opener_obj(form,'new_httpstep[required]',required); form.submit(); - window.close(); + close_window(); return true; } @@ -124,7 +124,7 @@ function update_httpstep(formname,list_name,sid,name,timeout,url,posts,required) if(!form) { - window.close(); + close_window(); return false; } @@ -136,7 +136,7 @@ function update_httpstep(formname,list_name,sid,name,timeout,url,posts,required) form.submit(); - window.close(); + close_window(); return true; } |
