diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-28 00:42:55 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-28 00:42:55 +0000 |
commit | 9f143557a3bf65ade735487a88afe86cf2599d60 (patch) | |
tree | aac809844f5166aa3fc34e51e4b57d18f083ad41 /modules/forum.module | |
parent | 08f8876f481f74df8c4eaf65673a6e7fd3ca0971 (diff) | |
download | brdo-9f143557a3bf65ade735487a88afe86cf2599d60.tar.gz brdo-9f143557a3bf65ade735487a88afe86cf2599d60.tar.bz2 |
- #35505: Forum form api typo
Diffstat (limited to 'modules/forum.module')
-rw-r--r-- | modules/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum.module b/modules/forum.module index 69e96621d..2015a42c0 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -379,7 +379,7 @@ function forum_block($op = 'list', $delta = 0, $edit = array()) { } if ($content) { - $content .= '<div class="more-link">'. l(t('more'), 'forum', array('title' => t('Read the latest forum topics.'))) .'</div>'; + $content .= '<div class="more-link">'. l(t('more'), 'forum', array('#title' => t('Read the latest forum topics.'))) .'</div>'; } $block['subject'] = $title; |