diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-02-06 09:55:29 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-02-06 09:55:29 +0000 |
| commit | 4f7fbfe6c9fe77d0590e4309c6aebe15fceba65a (patch) | |
| tree | e1383b0a1755450ff94169bbb364691289078c49 /frontends/php/screenconf.php | |
| parent | 0b765af5821ca1cf11057e2057ce466fbcfed5f2 (diff) | |
| download | zabbix-4f7fbfe6c9fe77d0590e4309c6aebe15fceba65a.tar.gz zabbix-4f7fbfe6c9fe77d0590e4309c6aebe15fceba65a.tar.xz zabbix-4f7fbfe6c9fe77d0590e4309c6aebe15fceba65a.zip | |
Misc GUI improvements.
git-svn-id: svn://svn.zabbix.com/trunk@2606 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/screenconf.php')
| -rw-r--r-- | frontends/php/screenconf.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/frontends/php/screenconf.php b/frontends/php/screenconf.php index 3502424c..313c5dfd 100644 --- a/frontends/php/screenconf.php +++ b/frontends/php/screenconf.php @@ -75,7 +75,7 @@ show_header2(S_CONFIGURATION_OF_SCREENS_BIG, $form); $table = new CTableInfo(S_NO_SCREENS_DEFINED); - $table->setHeader(array(S_ID,S_NAME,S_COLUMNS,S_ROWS,S_GRAPH)); + $table->setHeader(array(S_ID,S_NAME,S_DIMENSION_COLS_ROWS,S_SCREEN)); $result=DBselect("select screenid,name,cols,rows from screens order by name"); while($row=DBfetch($result)) @@ -85,9 +85,8 @@ $table->addRow(array( $row["screenid"], new CLink($row["name"],"screenconf.php?form=update&screenid=".$row["screenid"]), - $row["cols"], - $row["rows"], - new CLink(S_SHOW,"screenedit.php?screenid=".$row["screenid"]) + $row["cols"]." x ".$row["rows"], + new CLink(S_EDIT,"screenedit.php?screenid=".$row["screenid"]) )); } $table->show(); |
