diff options
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; } |