diff --git a/includes/theme.inc b/includes/theme.inc
index 47c2ff29f7d9..2f3e64b6fe0b 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -831,10 +831,10 @@ function theme_mark($type = MARK_NEW) {
global $user;
if ($user->uid) {
if ($type == MARK_NEW) {
- return ''. t('new') .'';
+ return ' '. t('new') .'';
}
else if ($type == MARK_UPDATED) {
- return ''. t('updated') .'';
+ return ' '. t('updated') .'';
}
}
}