summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-21 12:05:36 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-21 12:05:36 +0000
commit536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432 (patch)
tree4a5cc232cc53313e3a5f821a3f168d094d5d8feb /modules
parent1a0e5b534c3f664780b22751f2e04f945369267e (diff)
downloadbrdo-536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432.tar.gz
brdo-536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432.tar.bz2
#210479 by catch, dvessel: add newlines to list items, so inline display and RTL issues are resolved
Diffstat (limited to 'modules')
-rw-r--r--modules/blog/blog.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.pages.inc b/modules/blog/blog.pages.inc
index ecbfb6b8c..a0b54967d 100644
--- a/modules/blog/blog.pages.inc
+++ b/modules/blog/blog.pages.inc
@@ -20,7 +20,7 @@ function blog_page_user($account) {
$items[] = l(t('Post new blog entry.'), "node/add/blog");
}
else if ($account->uid == $user->uid) {
- $items[] = t('You are not allowed to post a new blog entry.') .'</li>';
+ $items[] = t('You are not allowed to post a new blog entry.');
}
$output = theme('item_list', $items);