1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 17:39:46 +01:00

Bugtracker #4576 - db_Select() can be db_Count()

This commit is contained in:
e107steved 2008-11-16 17:56:49 +00:00
parent 5f42c93758
commit 5920635d73

View File

@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_plugins/poll/poll_class.php,v $ | $Source: /cvs_backup/e107_0.8/e107_plugins/poll/poll_class.php,v $
| $Revision: 1.12 $ | $Revision: 1.13 $
| $Date: 2008-11-16 17:49:24 $ | $Date: 2008-11-16 17:56:49 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@ -346,8 +346,8 @@ class poll
$comment_total = 0; $comment_total = 0;
if ($pollArray['poll_comment']) if ($pollArray['poll_comment'])
{ // Only get comments if they're allowed on poll { // Only get comments if they're allowed on poll. And we only need the count ATM
$comment_total = $sql->db_Select("comments", "*", "comment_item_id='".intval($pollArray['poll_id'])."' AND comment_type=4"); $comment_total = $sql->db_Count("comments", "*", "comment_item_id='".intval($pollArray['poll_id'])."' AND comment_type=4");
} }
$QUESTION = $tp -> toHTML($pollArray['poll_title'], TRUE,"emotes_off, defs"); $QUESTION = $tp -> toHTML($pollArray['poll_title'], TRUE,"emotes_off, defs");