From 388d13ce42cda2d0d2b2184bafbaa38c22b38737 Mon Sep 17 00:00:00 2001 From: Neil Kandalgaonkar Date: Tue, 15 Mar 2011 04:41:15 +0000 Subject: [PATCH] removing another use of the vertical tab & form feed escapes, which are not available in production php5.2.4 --- includes/libs/JavaScriptMinifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1