Quote:
Originally Posted by pregnancyforum
Ah what a pain, thanks for testing it out for me.
I need to get around it, do you think its possible? My members will HATE this. 
|
Try this, in poll.php, find:
PHP Code:
if ($vbulletin->userinfo['userid'] != $threadinfo['postuserid'] AND !can_moderate($foruminfo['forumid'], 'caneditpoll'))
{
print_no_permission();
}
Replace with:
PHP Code:
if ($vbulletin->userinfo['userid'] != $threadinfo['postuserid'], 'caneditpoll'))
{
print_no_permission();
}
(This is untested)