diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-26 23:34:32 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-26 23:34:32 +0000 |
commit | 4fd12c25822133e9472430fd10800111d1784c71 (patch) | |
tree | 6543491022fdfc6b1f67e2f1a2e1c057a0ae9cdd /usr/local | |
parent | 10bfec0a631d5120c1418f210f68ceee939fbac1 (diff) | |
download | pfsense-4fd12c25822133e9472430fd10800111d1784c71.zip pfsense-4fd12c25822133e9472430fd10800111d1784c71.tar.gz |
Fix out of order icons
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/status_services.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php index c31333d..8d3c451 100755 --- a/usr/local/www/status_services.php +++ b/usr/local/www/status_services.php @@ -152,12 +152,12 @@ if($services) { echo '<tr><td class="listlr">' . $service['name'] . '</td>'; echo '<td class="listr">' . $service['description'] . '</td>'; if(is_service_running($service['name'], $ps) or is_process_running($service['name']) ) { - echo '<td class="listr">Running</td><td><img src="/themes/'; - echo $g["theme"] . '/images/icons/icon_pass.gif"></td>'; + echo '<td class="listr"><center>'; + echo "<img src=\"/themes/" . $g["theme"] . "/images/icons/icon_pass.gif\"> Running</td>"; $running = true; } else { - echo '<td class="listbg"><font color="white">Stopped</td><td><img src="/themes/'; - echo $g["theme"] . '/images/icons/icon_block.gif"></td>'; + echo '<td class="listbg"><center>'; + echo "<img src=\"/themes/" . $g["theme"] . "/images/icons/icon_block.gif\"> <font color=\"white\">Stopped</td>"; $running = false; } echo '<td valign="middle" class="list" nowrap>'; |