Quote:
Originally Posted by SilverBoy
I found the bug ..
in (Save Advanced Options For New Poll) plugin you forget to add (,) between reputation and usergroups.
the code must be like this
PHP Code:
$vbulletin->db->query_write("
INSERT INTO " . TABLE_PREFIX . "advancedpolls
(
pollid, postcount, membership, recentpost, reputation, usergroups
|
Yep, that was just a typo, I've fixed that.
Quote:
Originally Posted by SilverBoy
Another issue, when trying to delete any thread even if it didn't have a poll I get an error message
PHP Code:
Fatal error: Call to a member function query_write() on null in /home/manshor/public_html/forum/includes/class_dm_threadpost.php(1545) : eval()'d code on line 1
|
I guess your site need $vbulletin to be declared globally there...I've added that.
Quote:
Originally Posted by SilverBoy
Another issue, the system didn't let unregistered users to vote on the poll even if I add unregistered group to the group list that can vote if I disabled it in the usergroup global options (usergoup seetings) and in forum permissions.
|
I'll look into that when I have more time.