- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/tinymce/wp-tinymce.php
r11589 r12214 1 1 <?php 2 /** 3 * Disable error reporting 4 * 5 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 6 */ 7 error_reporting(0); 2 8 3 9 $basepath = dirname(__FILE__); … … 21 27 header("Cache-Control: public, max-age=$expires_offset"); 22 28 23 if ( isset($_GET['c']) && 1 == $_GET['c'] && false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) { 29 if ( isset($_GET['c']) && 1 == $_GET['c'] && isset($_SERVER['HTTP_ACCEPT_ENCODING']) 30 && false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) { 31 24 32 header('Content-Encoding: gzip'); 25 33 echo $file;
Note: See TracChangeset
for help on using the changeset viewer.