diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 13:48:08 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 13:48:08 +0000 |
commit | a6121c15033d1dee17fc5c504d06035906d0f6b8 (patch) | |
tree | 31795b26b03bf3c4d834a978a7af998785b58e47 /modules/blog.module | |
parent | 66ccfb3f8dd99b3757beebaf2f7363820b8c20aa (diff) | |
download | brdo-a6121c15033d1dee17fc5c504d06035906d0f6b8.tar.gz brdo-a6121c15033d1dee17fc5c504d06035906d0f6b8.tar.bz2 |
- fixing some incorrect l*() calls.
- fixing node_feed() to work with tax feeds. Thanks Moshe.
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index 1a2aa8d3c..7aba6d5dc 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -341,7 +341,7 @@ function blog_block() { while ($node = db_fetch_object($result)) { $output .= l(check_output($node->title), array("id" => $node->nid)) ."<br />\n"; } - $output .= "<br /><div align=\"right\">".lm(t("more"), array("mod" => "blog"), t("Read the latest blog entries."))."</div>"; + $output .= "<br /><div align=\"right\">".lm(t("more"), array("mod" => "blog"), "", array("title" => t("Read the latest blog entries."))) ."</div>"; $block[0]["content"] = $output; } |