- Hide 'version' row in cfg_config from web interface.

This commit is contained in:
Frank Fegert 2009-05-23 14:38:29 +00:00
parent 918467a703
commit 253659a825
1 changed files with 2 additions and 0 deletions

View File

@ -728,6 +728,8 @@ class TSMMonitor {
while(list($keycell, $valcell) = each($row)) {
if ($keycell == "id") {
$id = $valcell;
} else if ($valcell == "version") {
continue 2;
} else {
$modrow[$keycell] = $valcell;
}