diff --git a/includes/theme.inc b/includes/theme.inc index c9591713a169215c621012c2bbe1372e7c583b88..16c378dc5230a379aaf2b604841c95235a885e39 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -739,8 +739,13 @@ function theme_block($block) { */ function theme_mark($type = MARK_NEW) { global $user; - if ($user->uid && $type != MARK_READ) { - return '<span class="marker">*</span>'; + if ($user->uid) { + if ($type == MARK_NEW) { + return '<span class="marker">'. t('new') .'</span>'; + } + else if ($type == MARK_UPDATED) { + return '<span class="marker">'. t('updated') .'</span>'; + } } }