summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-07 15:44:53 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-07 15:44:53 +0000
commit38a5a287381863cea4cb852df8e47c16bb4d5aeb (patch)
tree92a3dd4512c6bc272a0d90bc2ac4656ae05e2903 /frontends/php/include/forms.inc.php
parente0531e491d0fc52fb3d662890dbd3dbedebfa754 (diff)
downloadzabbix-38a5a287381863cea4cb852df8e47c16bb4d5aeb.tar.gz
zabbix-38a5a287381863cea4cb852df8e47c16bb4d5aeb.tar.xz
zabbix-38a5a287381863cea4cb852df8e47c16bb4d5aeb.zip
- [DEV-61] automatic selection of drop-down element (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4980 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index bdfaab0f..c0648d18 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -3897,8 +3897,8 @@ include_once 'include/discovery.inc.php';
else if(in_array($resourcetype,array(SCREEN_RESOURCE_TRIGGERS_OVERVIEW,SCREEN_RESOURCE_DATA_OVERVIEW)))
{
$cmbStyle = new CComboBox('style', $style);
- $cmbStyle->AddItem(STYLE_TOP, S_TOP);
$cmbStyle->AddItem(STYLE_LEFT, S_LEFT);
+ $cmbStyle->AddItem(STYLE_TOP, S_TOP);
$form->AddRow(S_HOSTS_LOCATION, $cmbStyle);
}
else if($resourcetype == SCREEN_RESOURCE_CLOCK)