diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-27 02:14:33 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-27 02:14:33 +0000 |
commit | a2dbfc90340c1ea7fa34c1f7d954c1ae486be68b (patch) | |
tree | 1d1820afe1ad70fe12814b41f8c98c68f66cb8f5 | |
parent | 25ca7cc2ffaaaf652ba932bcf676d24a6c38ccf5 (diff) | |
download | brdo-a2dbfc90340c1ea7fa34c1f7d954c1ae486be68b.tar.gz brdo-a2dbfc90340c1ea7fa34c1f7d954c1ae486be68b.tar.bz2 |
#99579 by Heine. Don't placeholder the number of comments per page.
-rw-r--r-- | modules/comment/comment.module | 2 |
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, |