Quote:
Originally Posted by flypaper
For quick reply to work, make the IF statement say:
PHP Code:
if ((($_POST['do'] == 'postthread') and ($_POST['sbutton'] == 'Submit New Thread'))
or (($_POST['do'] == 'postreply') and ($_POST['sbutton'] == 'Submit Reply'))
or (($_POST['do'] == 'postreply') and ($_POST['sbutton'] == 'Post Quick Reply')))
Why does it have to check the button at all though?
|
I'm not certain, I think it's required to make sure the user can't access anything else of the randomly selected user's. I'll update with the quick-reply change.
@ Flypaper: Isn't you code saying if the user isn't user one OR isn't user two, so it would allow it for all users?
PHP Code:
if (($bbuserinfo['userid'] != 1) AND ($bbuserinfo['userid'] != 2)){
This is how I would do it. I'm steal fairly new at this, but I think it's correct.