diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-25 20:18:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-25 20:18:00 +0000 |
commit | 3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d (patch) | |
tree | 6911fddfe4a366decfcb846e34c4ae5f0aa480c7 /modules/forum | |
parent | 0e19200443c4ab1c4db74cfc50bad434dce36a3e (diff) | |
download | brdo-3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d.tar.gz brdo-3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d.tar.bz2 |
- Added missing title description. Patch by Stefan.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index cf4d9fd1b..b8e22d4c6 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -92,7 +92,7 @@ function forum_block($op = "list", $delta = 0) { $content .= node_title_list(db_query_range("SELECT n.nid, n.title, u.uid, u.name FROM node n LEFT JOIN forum f ON n.nid = f.nid LEFT JOIN users u ON n.uid = u.uid WHERE n.type = 'forum' ORDER BY n.nid DESC", 0, variable_get("forum_block_num", "5")), t("New forum topics:")); if ($content) { - $content .= "<div id=\"forum_more\" align=\"right\">". l(t("more"), "forum") ."</div>"; + $content .= "<div id=\"forum_more\" align=\"right\">". l(t("more"), "forum", array("title" => t("Read the latest forum topics."))) ."</div>"; } cache_set("forum:block", $content, time() + variable_get("cache_clear", 120)); |