From e87f5ebd4db58b76543980eb24a4efe044003e59 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Wed, 11 Jan 2006 14:38:49 +0000 Subject: Frontend improvements. git-svn-id: svn://svn.zabbix.com/trunk@2515 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontends/php/config.php') 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 "
"; 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 "
"; 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 "
"; 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"); -- cgit