From: Neil Kandalgaonkar Date: Tue, 15 Mar 2011 04:41:15 +0000 (+0000) Subject: removing another use of the vertical tab & form feed escapes, which are not available... X-Git-Tag: 1.31.0-rc.0~31396 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=388d13ce42cda2d0d2b2184bafbaa38c22b38737;p=lhc%2Fweb%2Fwiklou.git removing another use of the vertical tab & form feed escapes, which are not available in production php5.2.4 --- diff --git a/includes/libs/JavaScriptMinifier.php b/includes/libs/JavaScriptMinifier.php index e483b4a714..a991d91582 100644 --- a/includes/libs/JavaScriptMinifier.php +++ b/includes/libs/JavaScriptMinifier.php @@ -512,7 +512,7 @@ class JavaScriptMinifier { } else { // Identifier or reserved word. Search for the end by excluding whitespace and // punctuation. - $end += strcspn( $s, " \t\n.;,=<>+-{}()[]?:*/%'\"!&|^~\f\v\r", $end ); + $end += strcspn( $s, " \t\n.;,=<>+-{}()[]?:*/%'\"!&|^~\xb\xc\r", $end ); } // Now get the token type from our type array