summaryrefslogtreecommitdiffstats
path: root/etc/inc/service-utils.inc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2012-08-11 14:46:33 -0400
committerjim-p <jimp@pfsense.org>2012-08-11 14:46:33 -0400
commit7f4a799816d6d9bc176328ae50cc882b2aabd69c (patch)
tree78b9ec10b9bf5bb372669db0d2fd97c8afe0d492 /etc/inc/service-utils.inc
parente38d34b45f79a049408997c3183f5be182111fbc (diff)
downloadpfsense-7f4a799816d6d9bc176328ae50cc882b2aabd69c.zip
pfsense-7f4a799816d6d9bc176328ae50cc882b2aabd69c.tar.gz
Add/use some more similarly styled icons here, for a more consistent look.
Diffstat (limited to 'etc/inc/service-utils.inc')
-rw-r--r--etc/inc/service-utils.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/service-utils.inc b/etc/inc/service-utils.inc
index e593342..bdfa7dd 100644
--- a/etc/inc/service-utils.inc
+++ b/etc/inc/service-utils.inc
@@ -403,14 +403,14 @@ function get_service_status_icon($service, $withtext = true) {
if(get_service_status($service)) {
$statustext = gettext("Running");
$output .= '<td class="listr"><center>' . "\n";
- $output .= "<img style=\"vertical-align:middle\" title=\"" . sprintf(gettext("%s Service is"),$service["name"]) . " {$statustext}\" src=\"/themes/" . $g["theme"] . "/images/icons/icon_pass.gif\">";
+ $output .= "<img style=\"vertical-align:middle\" title=\"" . sprintf(gettext("%s Service is"),$service["name"]) . " {$statustext}\" src=\"/themes/" . $g["theme"] . "/images/icons/icon_service_running.gif\">";
if ($withtext)
$output .= " " . $statustext;
$output .= "</td>\n";
} else {
$statustext = gettext("Stopped");
$output .= '<td class="listbg"><center>' . "\n";
- $output .= "<img style=\"vertical-align:middle\" title=\"" . sprintf(gettext("%s Service is"),$service["name"]) . " {$statustext}\" src=\"/themes/" . $g["theme"] . "/images/icons/icon_block.gif\">";
+ $output .= "<img style=\"vertical-align:middle\" title=\"" . sprintf(gettext("%s Service is"),$service["name"]) . " {$statustext}\" src=\"/themes/" . $g["theme"] . "/images/icons/icon_service_stopped.gif\">";
if ($withtext)
$output .= "<font color=\"white\">{$statustext}</font>";
$output .= "</td>\n";
OpenPOWER on IntegriCloud