From 253659a825add1274ecfedeeb6d3d7e03f6517b2 Mon Sep 17 00:00:00 2001 From: Frank Fegert Date: Sat, 23 May 2009 14:38:29 +0000 Subject: [PATCH] - Hide 'version' row in cfg_config from web interface. --- includes/tsmmonitor.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/tsmmonitor.php b/includes/tsmmonitor.php index 5dc789a..ed2baeb 100644 --- a/includes/tsmmonitor.php +++ b/includes/tsmmonitor.php @@ -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; }