diff --git a/usr/local/www/shortcuts.inc b/usr/local/www/shortcuts.inc index 830b258671..c02d18c3e3 100644 --- a/usr/local/www/shortcuts.inc +++ b/usr/local/www/shortcuts.inc @@ -93,7 +93,7 @@ function get_shortcut_main_link($shortcut_section, $addspace = true, $service = break; } if(!empty($link) && ($_SERVER['REQUEST_URI'] != "/{$link}")) - return "{$space}"; + return "{$space}\"plus\""; } function get_shortcut_status_link($shortcut_section, $addspace = true, $service = array()) { @@ -117,14 +117,14 @@ function get_shortcut_status_link($shortcut_section, $addspace = true, $service break; } if(!empty($link)) - return "{$space}"; + return "{$space}\"status\""; } function get_shortcut_log_link($shortcut_section, $addspace = true) { global $g, $shortcuts; $space = ($addspace) ? " " : "" ; if(!empty($shortcut_section) && !empty($shortcuts[$shortcut_section]['log'])) { - return "{$space}"; + return "{$space}\"logs\""; } }