functions: HTML compressor: fixed handling of <script> blocks which consist only of whitespace
--- a/includes/functions.php Sat Jan 29 15:31:25 2011 -0500
+++ b/includes/functions.php Thu Feb 10 01:34:55 2011 -0500
@@ -3373,7 +3373,7 @@
for ( $i = 0; $i < count($jscript[0]); $i++ )
{
$js =& $jscript[2][$i];
- if ( empty($js) )
+ if ( trim($js) == '' )
continue;
$js = $jsc->getClean($js);