Quote:
Originally posted by DWZ
If you look at this attachment, you see what a person sees when they have voted. That's what I wanted a un-registered person too see (properly without the bit that says "You have already voted on this poll). So they can't vote at all. You get what I mean?(DWZ) [/B]
|
After I did this I thought that may be what you wanted, heres the change to vbindex.php which will show the results of the poll for users with the userid 0:
Change This:
PHP Code:
if (!$pollinfo[active] or !$pollinfo[open] or ($pollinfo[dateline]+($pollinfo[timeout]*86400)<time() and $pollinfo[timeout]!=0)) {
To This:
PHP Code:
if (!$pollinfo[active] or !$pollinfo[open] or ($pollinfo[dateline]+($pollinfo[timeout]*86400)<time() and $pollinfo[timeout]!=0) or $bbuserinfo['userid']==0) {
I'll have a look at the logout issue and post here/PM you when its done