Quote:
Originally Posted by Phaedrus
On Version 4.2.2
I rem'd out line 20 in the forums/admincp/templateedits.php file and it now works again.
Right as rain...
This:
Code:
// double output buffering does some weird things, so turn it off
define('CVS_REVISION', '$RCSfile$ - $Revision: 146 $');
define('NOZIP', 1);
$vbulletin->nozip = true;
Became this:
Code:
// double output buffering does some weird things, so turn it off
define('CVS_REVISION', '$RCSfile$ - $Revision: 146 $');
define('NOZIP', 1);
//$vbulletin->nozip = true;
|
You could alway do the (kind of) right thing and do something like
Code:
// double output buffering does some weird things, so turn it off
define('CVS_REVISION', '$RCSfile$ - $Revision: 146 $');
define('NOZIP', 1);
$vbulletin = new stdClass();
$vbulletin->nozip = true;
That way you retain the original function of the code, but disable the warning. At least for php 5.4. I mean, this worked fine on my server. No guarantees^^