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;