Installed this hack with no modification at all.
Just add this to your phpinclude_end template:
PHP Code:
$thisscriptis = array(
'editpost',
'register',
'newreply',
'newthread',
'sendmessage',
'private',
);
if (!in_array(THIS_SCRIPT, $thisscriptis)) {
$patterns = array('/\>\s+\</', '/^\s*/m');
$replace = array('> <', '');
$output = preg_replace($patterns, $replace, $output);
} else {
$output = preg_replace('/\>\s+\</', '> <', $output);
}