Changeset 11590
- Timestamp:
- 06/17/2009 01:08:05 AM (15 years ago)
- Location:
- branches/2.8
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/includes/manifest.php
r11507 r11590 93 93 if ( @is_file('../wp-includes/js/tinymce/tiny_mce.js') ) : 94 94 $mce = array( 95 array('../wp-includes/js/tinymce/wp-tinymce.php', 'c=1&' . $mce_ver, true), 96 array('../wp-includes/js/tinymce/wp-tinymce.php', 'c=0&' . $mce_ver, true), 95 array('../wp-includes/js/tinymce/wp-tinymce.php', $mce_ver, true), 97 96 98 97 array('../wp-includes/js/tinymce/tiny_mce.js', $mce_ver, true), -
branches/2.8/wp-includes/js/tinymce/wp-tinymce.php
r10476 r11590 9 9 10 10 if ( ! $path || ! @is_file($path) ) 11 return '';11 return false; 12 12 13 13 return @file_get_contents($path); … … 21 21 header("Cache-Control: public, max-age=$expires_offset"); 22 22 23 if ( isset($_GET['c']) && 1 == $_GET['c'] && false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') ) {23 if ( isset($_GET['c']) && 1 == $_GET['c'] && false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) { 24 24 header('Content-Encoding: gzip'); 25 echo get_file($basepath . '/wp-tinymce.js.gz');25 echo $file; 26 26 } else { 27 27 echo get_file($basepath . '/wp-tinymce.js'); -
branches/2.8/wp-includes/version.php
r11584 r11590 30 30 * @global string $manifest_version 31 31 */ 32 $manifest_version = '2009061 0';32 $manifest_version = '20090616';
Note: See TracChangeset
for help on using the changeset viewer.