Nice and useful hack, but it has some problems
- It does not support table prefixes
- It adds a query for every thread that contains a poll
Fix for #1
In functions_fordumdisplay.php FIND
PHP Code:
function process_thread_array($thread, $lastread = -1, $allowicons = -1)
{
BELOW that ADD
PHP Code:
global $DB_site;
Still in functions_forumdisplay.php FIND
PHP Code:
$pollvotecheckq = mysql_query("SELECT votedate FROM pollvote WHERE userid=$bbuserinfo[userid] AND pollid=$thread[pollid]");
$pollvotecheck = mysql_fetch_array($pollvotecheckq);
REPLACE that with
PHP Code:
$pollvotecheck = $DB_site->query_first("SELECT votedate FROM " . TABLE_PREFIX . "pollvote WHERE userid=$bbuserinfo[userid] AND pollid=$thread[pollid]");
Anyone got ideas for problem #2?
This is really bad as I got a forum which is dedicated to polls, so this would add 40 queries when this forum dis being displayed
Edit:Nevermind. I got it working with just 1 additional query (which will only be executexc when there are any polls and it is not a guest). Unfortunately this does currenlty only work in forum display, but not ich searches and subscribed threads.