### Eclipse Workspace Patch 1.0
#P drupal-5
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.611.2.5
diff -u -r1.611.2.5 common.inc
--- includes/common.inc	4 May 2007 08:56:30 -0000	1.611.2.5
+++ includes/common.inc	10 Jun 2007 18:43:51 -0000
@@ -1526,6 +1526,10 @@
     $data = preg_replace($regexp, '', $data);
     $data = implode('', $matches[0]) . $data;
 
+    // Remove charset declarations for standards compliance (and fixing Safari problems)
+    $regexp = '/@charset[^;]+;/i';
+    $data = preg_replace($regexp, '', $data);
+
     // Perform some safe CSS optimizations.
     $data = preg_replace('<
       \s*([@{}:;,]|\)\s|\s\()\s* |  # Remove whitespace around separators, but keep space around parentheses.
