summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-05 10:57:58 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-12-05 10:57:58 +0000
commit7d13ea434dba96e69195d74c338498f847e9fed3 (patch)
tree174bc17745807e3341b518d256ab5f3b8d355f0b /frontends/php/include/forms.inc.php
parentd13ea897eda76d08bac623bb1a6e965b712c8116 (diff)
downloadzabbix-7d13ea434dba96e69195d74c338498f847e9fed3.tar.gz
zabbix-7d13ea434dba96e69195d74c338498f847e9fed3.tar.xz
zabbix-7d13ea434dba96e69195d74c338498f847e9fed3.zip
- added changes for better support Konqueror Browser (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5133 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index 9d2e3574..d1dfb14e 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -2223,9 +2223,12 @@
}
- function insert_login_form()
- {
- $frmLogin = new CFormTable('Login','index.php',"post","multipart/form-data");
+ function insert_login_form(){\
+// author: Aly
+// description:
+// konqueror bug #138024; adding usless param(login=1) to the form's action path to avoid bug!!
+
+ $frmLogin = new CFormTable('Login','index.php?login=1',"post","multipart/form-data");
$frmLogin->SetHelp('web.index.login');
$frmLogin->AddRow('Login name', new CTextBox('name'));
$frmLogin->AddRow('Password', new CPassBox('password'));