
Yes several times
Also replaced polls.php and added a empty forum with none of the data from the merge.
As I read the code the error apears here in polls.php Get forum info
Also replaced polls.php and added a empty forum with none of the data from the merge.
As I read the code the error apears here in polls.php Get forum info
// Get forum info
$forum = get_forum($fid);
if(!$forum)
{
error($lang->error_invalidforum);
}
else
{
// Is our forum closed?
if($forum['open'] == 0 && !is_moderator($fid, "canmanagepolls"))
{
// Doesn't look like it is
error($lang->error_closedinvalidforum);
}
Martin