summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-01-07 19:20:09 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-01-07 19:20:09 +0000
commit271b638fc01251ef941e703d7b2eb0f2c26e93de (patch)
tree5cc00e951f1f730b71f8df55aeb0af10ccf78d21 /usr
parentbaf92a0f6d1e685e21cce582c3d211d189c0d5e2 (diff)
downloadpfsense-271b638fc01251ef941e703d7b2eb0f2c26e93de.zip
pfsense-271b638fc01251ef941e703d7b2eb0f2c26e93de.tar.gz
MFC 9156
use the correct class to stop from having double horizontal lines
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/status_services.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php
index 58d0244..c31333d 100755
--- a/usr/local/www/status_services.php
+++ b/usr/local/www/status_services.php
@@ -150,9 +150,9 @@ if($services) {
if(!$service['name']) continue;
if(!$service['description']) $service['description'] = "Unknown";
echo '<tr><td class="listlr">' . $service['name'] . '</td>';
- echo '<td class="listlr">' . $service['description'] . '</td>';
+ echo '<td class="listr">' . $service['description'] . '</td>';
if(is_service_running($service['name'], $ps) or is_process_running($service['name']) ) {
- echo '<td class="listlr">Running</td><td><img src="/themes/';
+ echo '<td class="listr">Running</td><td><img src="/themes/';
echo $g["theme"] . '/images/icons/icon_pass.gif"></td>';
$running = true;
} else {
OpenPOWER on IntegriCloud