TheInsaneManiac
08-24-2008, 03:44 AM
I seem to have run into a snag with my product. Everything had been going smoothly using the current "|" script I have, but for some reason I can't figure out how to make allowedids be able to separate with the "|"
$valid_ids = $vbulletin->options['allowedids'];
if ($vbulletin->userinfo['userid'] != $valid_ids)
I also tried someone elses way:
$valid_ids = explode("|", $vbulletin->options['allowedids']);
if ($vbulletin->userinfo['userid'] != $valid_ids)
No success yet. Suggestions?
$valid_ids = $vbulletin->options['allowedids'];
if ($vbulletin->userinfo['userid'] != $valid_ids)
I also tried someone elses way:
$valid_ids = explode("|", $vbulletin->options['allowedids']);
if ($vbulletin->userinfo['userid'] != $valid_ids)
No success yet. Suggestions?