From 9c43f5440eb5b9c38e546d81ed763d155bbdd99a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 18 May 2003 07:01:37 +0000 Subject: - Fixed some PostgreSQL issues. Reported by Michael. - Removed some dead wood. --- modules/comment.module | 11 ++++++++--- modules/comment/comment.module | 11 ++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) (limited to 'modules') diff --git a/modules/comment.module b/modules/comment.module index c52e37c94..fca716b31 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1033,7 +1033,7 @@ function comment_admin() { $status = $comment_settings["status"]; $comment_page = $comment_settings["comment_page"]; } - print comment_admin_overview(0, $comment_page); + print comment_admin_overview(0); break; case t("Submit"): print status(comment_save(check_query(arg(3)), $edit)); @@ -1041,10 +1041,15 @@ function comment_admin() { $status = $comment_settings["status"]; $comment_page = $comment_settings["comment_page"]; } - print comment_admin_overview(0, $comment_page); + print comment_admin_overview(0); break; default: - print comment_admin_overview(arg(2), $comment_page); + if (arg(2) == 1) { + print comment_admin_overview(1); + } + else { + print comment_admin_overview(0); + } } } else { diff --git a/modules/comment/comment.module b/modules/comment/comment.module index c52e37c94..fca716b31 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1033,7 +1033,7 @@ function comment_admin() { $status = $comment_settings["status"]; $comment_page = $comment_settings["comment_page"]; } - print comment_admin_overview(0, $comment_page); + print comment_admin_overview(0); break; case t("Submit"): print status(comment_save(check_query(arg(3)), $edit)); @@ -1041,10 +1041,15 @@ function comment_admin() { $status = $comment_settings["status"]; $comment_page = $comment_settings["comment_page"]; } - print comment_admin_overview(0, $comment_page); + print comment_admin_overview(0); break; default: - print comment_admin_overview(arg(2), $comment_page); + if (arg(2) == 1) { + print comment_admin_overview(1); + } + else { + print comment_admin_overview(0); + } } } else { -- cgit v1.2.3