summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-01 23:50:19 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-01 23:50:19 +0000
commitdd781f99eaf6e1c7bdc2a98f469c8d76961bd6ed (patch)
tree8fde6d759864034a1490da69c1a8f2e49df12d35 /modules/blog
parentc6f65d2e595106ae08fd4aee5b7167c48552b6d2 (diff)
downloadbrdo-dd781f99eaf6e1c7bdc2a98f469c8d76961bd6ed.tar.gz
brdo-dd781f99eaf6e1c7bdc2a98f469c8d76961bd6ed.tar.bz2
- Patch #866220 by David_Rothstein: URL parameter for theme_more_link() should not pass url().
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 89630db5e..b3c88e576 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -245,7 +245,7 @@ function blog_block_view($delta = '') {
$block['content']['blog_list'] = $node_title_list;
$block['content']['blog_more'] = array(
'#theme' => 'more_link',
- '#url' => url('blog'),
+ '#url' => 'blog',
'#title' => t('Read the latest blog entries.'),
);