Index: trunk/phase3/includes/CSSMin.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | // If we ever get to PHP 5.3, we should use the Fileinfo extension instead of mime_content_type |
64 | 64 | $type = mime_content_type( $file ); |
65 | 65 | // Strip off any trailing = symbols (makes browsers freak out) |
66 | | - $data = rtrim( base64_encode( file_get_contents( $file ) ), '=' ); |
| 66 | + $data = base64_encode( file_get_contents( $file ) ); |
67 | 67 | // Build 2 CSS properties; one which uses a base64 encoded data URI in place of the @embed |
68 | 68 | // comment to try and retain line-number integrity , and the other with a remapped an versioned |
69 | 69 | // URL and an Internet Explorer hack making it ignored in all browsers that support data URIs |