diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-01-29 19:51:39 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-01-29 19:51:39 +0000 |
commit | df062323b223ad238c1555b1d2cccd8d8448d923 (patch) | |
tree | 705bbed2c12caabd1bbf9a62f838d4846ccc0609 | |
parent | 3a9625e2e3665c8ba019896dc7cef8e84e5965cd (diff) | |
download | brdo-df062323b223ad238c1555b1d2cccd8d8448d923.tar.gz brdo-df062323b223ad238c1555b1d2cccd8d8448d923.tar.bz2 |
- Fixed bug #5479: Default comments per page setting broken. (walkah)
-rw-r--r-- | modules/comment.module | 2 | ||||
-rw-r--r-- | modules/comment/comment.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment.module b/modules/comment.module index 9c937dde0..09d8e3d43 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1691,7 +1691,7 @@ function _comment_get_orders() { } function _comment_per_page() { - return array(10, 30, 50, 70, 90); + return array(10 => 10, 30 => 30, 50 => 50, 70 => 70, 90 => 90); } ?> diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 9c937dde0..09d8e3d43 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1691,7 +1691,7 @@ function _comment_get_orders() { } function _comment_per_page() { - return array(10, 30, 50, 70, 90); + return array(10 => 10, 30 => 30, 50 => 50, 70 => 70, 90 => 90); } ?> |