summaryrefslogtreecommitdiffstats
path: root/frontends/php/config.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-11 14:38:49 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-11 14:38:49 +0000
commite87f5ebd4db58b76543980eb24a4efe044003e59 (patch)
tree04c5bfc3f208d4c9d7a137ff356035ca08cb7014 /frontends/php/config.php
parentb4b26e48b09f36c8b533412a1b19f1f23a447a9b (diff)
downloadzabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.tar.gz
zabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.tar.xz
zabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.zip
Frontend improvements.
git-svn-id: svn://svn.zabbix.com/trunk@2515 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/config.php')
-rw-r--r--frontends/php/config.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/config.php b/frontends/php/config.php
index 8f48313d..c04ead03 100644
--- a/frontends/php/config.php
+++ b/frontends/php/config.php
@@ -251,7 +251,7 @@
echo "<br>";
show_table_header(S_IMAGES_BIG);
- $table=new Ctable(S_NO_IMAGES_DEFINED);
+ $table=new CTableInfo(S_NO_IMAGES_DEFINED);
$table->setHeader(array(S_ID,S_TYPE,S_NAME,S_ACTIONS));
$result=DBselect("select imageid,imagetype,name,image from images order by name");
@@ -295,7 +295,7 @@
echo "<br>";
show_table_header(S_MEDIA_TYPES_BIG);
- $table=new CTable(S_NO_MEDIA_TYPES_DEFINED);
+ $table=new CTableInfo(S_NO_MEDIA_TYPES_DEFINED);
$table->setHeader(array(S_ID,S_DESCRIPTION,S_TYPE));
$result=DBselect("select mt.mediatypeid,mt.type,mt.description,mt.smtp_server,mt.smtp_helo,mt.smtp_email,mt.exec_path from media_type mt order by mt.type");
@@ -407,7 +407,7 @@
echo "<br>";
show_table_header(S_AUTOREGISTRATION_RULES_BIG);
- $table=new Ctable(S_NO_AUTOREGISTRATION_RULES_DEFINED);
+ $table=new CTableInfo(S_NO_AUTOREGISTRATION_RULES_DEFINED);
$table->setHeader(array(S_ID,S_PRIORITY,S_PATTERN,S_HOST));
$result=DBselect("select * from autoreg order by priority");