Quote:
Originally Posted by disinfected
Unfortunately I cannot....
PHP User Warning: Illegal string offset 'creatoruserid' in ..../group.php on line 1383
Fatal error: Only variables can be passed by reference in /opt/242/usr/home/sites/www.gfy.com/www/group.php on line 1383
Any way to get this working?
|
The first one, the warning is because you're passing a string instead of an array, which is what it's trying to work with. Despite PHP allowing you to treat strings as arrays. Example: $str = 'hello world'; echo $str[3]; // result is the second L in hello.
The second one is what looks like because the forum is registering it's own error handler, PHP automatically sets E_STRICT, and well there's some wonky ass shit going on.
Moral of the story is, vBulletin is a hunk of shit.