Quote:
08-30-03 at 08:09 PM JulianD said this in Post #29
You know, I was thinking about it.. wouldn't be possible to disable this hack only if the Add template name in comments option is active on the control panel?
|
Yes that can be possible:
You need to change this line in the hack
PHP Code:
$vartext=preg_replace ("/(\>)(\s*)(\\r\\n)*(\s*)(\<)/", '\\1\\5', $vartext);
as:
PHP Code:
if ($addtemplatename==0) { $vartext=preg_replace ("/(\>)(\s*)(\\r\\n)*(\s*)(\<)/", '\\1\\5', $vartext); }
And also add:
PHP Code:
global $addtemplatename;
right after:
PHP Code:
function dooutput($vartext,$sendheader=1) {
This will enable compression if template name option is turned on in settings page.
Enjoy..