Changeset 22531
- Timestamp:
- 11/10/2012 06:13:09 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/load-scripts.php
r21997 r22531 126 126 $compress = ( isset($_GET['c']) && $_GET['c'] ); 127 127 $force_gzip = ( $compress && 'gzip' == $_GET['c'] ); 128 $expires_offset = 31536000; 128 $expires_offset = 31536000; // 1 year 129 129 $out = ''; 130 130 -
trunk/wp-admin/load-styles.php
r21997 r22531 105 105 $force_gzip = ( $compress && 'gzip' == $_GET['c'] ); 106 106 $rtl = ( isset($_GET['dir']) && 'rtl' == $_GET['dir'] ); 107 $expires_offset = 31536000; 107 $expires_offset = 31536000; // 1 year 108 108 $out = ''; 109 109 -
trunk/wp-includes/default-constants.php
r22054 r22531 74 74 define('SHORTINIT', false); 75 75 76 // Constants for expressing human- intervalintervals76 // Constants for expressing human-readable intervals 77 77 // in their respective number of seconds. 78 78 define( 'MINUTE_IN_SECONDS', 60 ); -
trunk/wp-includes/js/tinymce/wp-tinymce.php
r21997 r22531 20 20 } 21 21 22 $expires_offset = 31536000; 22 $expires_offset = 31536000; // 1 year 23 23 24 24 header('Content-Type: application/x-javascript; charset=UTF-8');
Note: See TracChangeset
for help on using the changeset viewer.