summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_services.php
diff options
context:
space:
mode:
authorbcyrill <cyrill@bannwart.info>2012-04-13 00:20:50 +0300
committerbcyrill <cyrill@bannwart.info>2012-04-13 00:20:50 +0300
commit39121390a74e58c965f673cb2bbc2d3a44d28e26 (patch)
treefc762b1452b5ee8f6a7b01dd238b2252fe0fb71b /usr/local/www/status_services.php
parentd1edd7e5aec9f302f231474f89d95c88d5d11bb2 (diff)
downloadpfsense-39121390a74e58c965f673cb2bbc2d3a44d28e26.zip
pfsense-39121390a74e58c965f673cb2bbc2d3a44d28e26.tar.gz
Fixed HTML tag.
Diffstat (limited to 'usr/local/www/status_services.php')
-rwxr-xr-xusr/local/www/status_services.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php
index 5061213..ea0a261 100755
--- a/usr/local/www/status_services.php
+++ b/usr/local/www/status_services.php
@@ -376,10 +376,10 @@ if (count($services) > 0) {
else
$running = is_service_running($service['name']);
if($running) {
- echo '<td class="listr"><center>' . "\n";
+ echo "<td class=\"listr\" align=\"center\">\n";
echo "<img src=\"/themes/" . $g["theme"] . "/images/icons/icon_pass.gif\"> " . gettext("Running") . "</td>\n";
} else {
- echo '<td class="listbg"><center>' . "\n";
+ echo "<td class=\"listbg\" align=\"center\">\n";
echo "<img src=\"/themes/" . $g["theme"] . "/images/icons/icon_block.gif\"> <font color=\"white\">" . gettext("Stopped") . "</td>\n";
}
echo '<td valign="middle" class="list" nowrap>';
@@ -409,7 +409,7 @@ if (count($services) > 0) {
echo "</td></tr>\n";
}
} else {
- echo "<tr><td colspan=\"3\"><center>" . gettext("No services found") . ".</td></tr>\n";
+ echo "<tr><td colspan=\"3\" align=\"center\">" . gettext("No services found") . ".</td></tr>\n";
}
?>
OpenPOWER on IntegriCloud