- add some space

4.7.x
Dries Buytaert 2005-09-29 08:02:55 +00:00
parent f101792d75
commit cec8db72dd
1 changed files with 2 additions and 2 deletions

View File

@ -831,10 +831,10 @@ function theme_mark($type = MARK_NEW) {
global $user;
if ($user->uid) {
if ($type == MARK_NEW) {
return '<span class="marker">'. t('new') .'</span>';
return ' <span class="marker">'. t('new') .'</span>';
}
else if ($type == MARK_UPDATED) {
return '<span class="marker">'. t('updated') .'</span>';
return ' <span class="marker">'. t('updated') .'</span>';
}
}
}