From b9944c9ae753cd571e36ad8f030c1ba1bb11ad20 Mon Sep 17 00:00:00 2001 From: Jonathan Ernst Date: Wed, 9 Feb 2005 23:49:21 +0000 Subject: [PATCH] Fix commentview admin panel --- admin/adminCommentView.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/admin/adminCommentView.php b/admin/adminCommentView.php index e43c092..2831ac1 100644 --- a/admin/adminCommentView.php +++ b/admin/adminCommentView.php @@ -98,10 +98,9 @@ $commentIds = query_appdb("SELECT commentId from appComments ORDER BY ". while ($ob = mysql_fetch_object($commentIds)) { $qstring = "SELECT from_unixtime(unix_timestamp(time), \"%W %M %D %Y, %k:%i\") as time, ". - "commentId, parentId, appId, versionId, userid, subject, body ". + "commentId, parentId, versionId, userid, subject, body ". "FROM appComments WHERE commentId = $ob->commentId;"; $result = query_appdb($qstring); - /* call view_app_comment to display the comment */ $comment_ob = mysql_fetch_object($result); view_app_comment($comment_ob); @@ -113,5 +112,4 @@ display_range($currentPage, $pageRange, $totalPages, $commentsPerPage); echo ""; apidb_footer(); - ?>