diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-04 17:41:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-04 17:41:11 +0000 |
commit | f26d8807fc2f272542c9c7845c293daa930d0096 (patch) | |
tree | 0c087a99a27d4cd0bdcefc3420b69e628542b7cd /modules/comment/comment.module | |
parent | cf2802a761e07d060876e22578d03153ed14c7d1 (diff) | |
download | brdo-f26d8807fc2f272542c9c7845c293daa930d0096.tar.gz brdo-f26d8807fc2f272542c9c7845c293daa930d0096.tar.bz2 |
- Two small fixes.
Diffstat (limited to 'modules/comment/comment.module')
-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 2c0de7923..1c56bf2ce 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -802,7 +802,7 @@ function comment_save($id, $edit) { function comment_admin_overview($status = 0) { - $result = pager_query("SELECT c.*, u.name, u.uid FROM comments c LEFT JOIN users u ON u.uid = c.uid WHERE c.status = '". check_query($status) ."' ORDER BY c.timestamp DESC"); + $result = pager_query("SELECT c.*, u.name, u.uid FROM comments c LEFT JOIN users u ON u.uid = c.uid WHERE c.status = '". check_query($status) ."' ORDER BY c.timestamp DESC", 50); $header = array(t("subject"), t("author"), t("status"), array("data" => t("operations"), "colspan" => 2)); while ($comment = db_fetch_object($result)) { |