I had this modification enhanced. Because I work on calendar
Code:
// ###################### Page Output Compression #######################
$thisscriptis = array(
'editpost',
'register',
'newreply',
'newthread',
'sendmessage',
'calendar',
'faq',
'profile',
'private',
);
if (!in_array(THIS_SCRIPT, $thisscriptis))
{
$patterns = array('/\>\s+\</', '/^\s*/m');
$replace = array('> <', '');
$vartext = preg_replace($patterns, $replace, $vartext);
}
else
{
$vartext = preg_replace('/\>\s+\</', '> <', $vartext);
}
// ###################### Page Output Compression #######################