summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-27 02:14:33 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-27 02:14:33 +0000
commita2dbfc90340c1ea7fa34c1f7d954c1ae486be68b (patch)
tree1d1820afe1ad70fe12814b41f8c98c68f66cb8f5 /modules
parent25ca7cc2ffaaaf652ba932bcf676d24a6c38ccf5 (diff)
downloadbrdo-a2dbfc90340c1ea7fa34c1f7d954c1ae486be68b.tar.gz
brdo-a2dbfc90340c1ea7fa34c1f7d954c1ae486be68b.tar.bz2
#99579 by Heine. Don't placeholder the number of comments per page.
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index ac3007a4c..ee29f3a89 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1582,7 +1582,7 @@ function comment_controls($mode = COMMENT_MODE_THREADED_EXPANDED, $order = COMME
'#weight' => 2,
);
foreach (_comment_per_page() as $i) {
- $options[$i] = t('%a comments per page', array('%a' => $i));
+ $options[$i] = t('!a comments per page', array('!a' => $i));
}
$form['comments_per_page'] = array('#type' => 'select',
'#default_value' => $comments_per_page,