diff options
Diffstat (limited to 'modules/queue.module')
-rw-r--r-- | modules/queue.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/queue.module b/modules/queue.module index 4cd4183e8..e8fa7fec9 100644 --- a/modules/queue.module +++ b/modules/queue.module @@ -26,7 +26,7 @@ function queue_perm() { function queue_link($type) { if ($type == "menu.view" && user_access("access submission queue")) { - $links[] = l(t("view submissions"), "queue", array("title" => t("Moderate the content in the submission queue."))) ." (<span style=\"color: red;\">". queue_count() ."</span>)"; + $links[] = l(t("view submissions"), "queue", array("title" => t("Moderate the content in the submission queue."))) ." (<span class=\"queue-user-numeral\">". queue_count() ."</span>)"; } return $links ? $links : array(); @@ -233,4 +233,4 @@ function queue_nodeapi(&$node, $op, $arg = 0) { break; } } -?>
\ No newline at end of file +?> |