summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-10-25 14:44:38 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-10-25 14:44:38 +0000
commit4d02efc00fc5a4c076f12c4039197baf080c33d4 (patch)
tree56a354d3bf079e55e854b8c1f040e4c96d6fe6a0 /frontends/php/include/forms.inc.php
parent1064b7a725f59c3ab5f6efa0bc984a374dc3423b (diff)
downloadzabbix-4d02efc00fc5a4c076f12c4039197baf080c33d4.tar.gz
zabbix-4d02efc00fc5a4c076f12c4039197baf080c33d4.tar.xz
zabbix-4d02efc00fc5a4c076f12c4039197baf080c33d4.zip
- developed Numeric Box
git-svn-id: svn://svn.zabbix.com/trunk@3383 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index 89edd1e6..bb7bede1 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -85,9 +85,10 @@
}
$frmNode->AddRow(S_TIME_ZONE, $cmbTimeZone);
$frmNode->AddRow(S_IP, new CTextBox('ip', $ip, 17));
- $frmNode->AddRow(S_PORT, new CTextBox('port', $port,5));
- $frmNode->AddRow(S_DO_NOT_KEEP_HISTORY_OLDER_THAN, new CTextBox('slave_history', $slave_history,6));
- $frmNode->AddRow(S_DO_NOT_KEEP_TRENDS_OLDER_THAN, new CTextBox('slave_trends', $slave_trends,6));
+//TEST $frmNode->AddRow(S_IP.'(test)', new CIpBox('ip', $ip));
+ $frmNode->AddRow(S_PORT, new CNumericBox('port', $port,5));
+ $frmNode->AddRow(S_DO_NOT_KEEP_HISTORY_OLDER_THAN, new CNumericBox('slave_history', $slave_history,6));
+ $frmNode->AddRow(S_DO_NOT_KEEP_TRENDS_OLDER_THAN, new CNumericBox('slave_trends', $slave_trends,6));
$frmNode->AddItemToBottomRow(new CButton('save',S_SAVE));