Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.756.2.97 diff -u -r1.756.2.97 common.inc --- includes/common.inc 11 Aug 2010 21:10:41 -0000 1.756.2.97 +++ includes/common.inc 16 Aug 2010 17:59:58 -0000 @@ -2024,12 +2024,12 @@ // Regexp to match single quoted strings. $single_quot = "'[^'\\\\]*(?:\\\\.[^'\\\\]*)*'"; $contents = preg_replace_callback( - "<$double_quot|$single_quot|$comment>Sus", // Match all comment blocks along - "_process_comment", // with double/single quoted strings - $contents); // and feed them to _process_comment(). + "<$double_quot|$single_quot|$comment>Ss", // Match all comment blocks along + "_process_comment", // with double/single quoted strings + $contents); // and feed them to _process_comment(). $contents = preg_replace( - '<\s*([@{}:;,]|\)\s|\s\()\s*>S', // Remove whitespace around separators, - '\1', $contents); // but keep space around parentheses. + '<\s*([@{}:;,]|\)\s|\s\()\s*>S', // Remove whitespace around separators, + '\1', $contents); // but keep space around parentheses. // End the file with a new line. $contents .= "\n"; }