summaryrefslogtreecommitdiff
path: root/modules/forum.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-03-25 20:18:00 +0000
committerDries Buytaert <dries@buytaert.net>2003-03-25 20:18:00 +0000
commit3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d (patch)
tree6911fddfe4a366decfcb846e34c4ae5f0aa480c7 /modules/forum.module
parent0e19200443c4ab1c4db74cfc50bad434dce36a3e (diff)
downloadbrdo-3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d.tar.gz
brdo-3c1d5b9f3fbb43aabd3cd260a0d8c6c26d2ff79d.tar.bz2
- Added missing title description. Patch by Stefan.
Diffstat (limited to 'modules/forum.module')
-rw-r--r--modules/forum.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum.module b/modules/forum.module
index cf4d9fd1b..b8e22d4c6 100644
--- a/modules/forum.module
+++ b/modules/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));