Quote:
Originally Posted by COBRAws
I was having the Steal sigs bug, now I updated with the new code replacements (replaced just the first instances and the two).
Anything I do, I get the following error msg:
mmm 
|
That happened to me while during primary testing. On vBulletin 3.6.4 it happens when you have:
PHP Code:
$lastfetchtype = ($lastfetchtype != $fetchtype) ? $fetchtype : $lastfetchtype;
$lastcheck = ($lastfetchtype == $fetchtype) ? true : false;
instead of
PHP Code:
$lastcheck = ($lastfetchtype == $fetchtype) ? true : false;
$lastfetchtype = ($lastfetchtype != $fetchtype) ? $fetchtype : $lastfetchtype;