Changeset 18621 for trunk/wp-includes/script-loader.php
- Timestamp:
- 08/30/2011 01:12:26 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/script-loader.php
r18620 r18621 62 62 $scripts->add( 'utils', "/wp-admin/js/utils$suffix.js", false, '20101110' ); 63 63 64 $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20110 711', 1 );64 $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20110829', 1 ); 65 65 $scripts->add_script_data( 'common', 'commonL10n', array( 66 66 'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.") … … 156 156 // common bits for both uploaders 157 157 $max_upload_size = ( (int) ( $max_up = @ini_get('upload_max_filesize') ) < (int) ( $max_post = @ini_get('post_max_size') ) ) ? $max_up : $max_post; 158 158 159 159 if ( empty($max_upload_size) ) 160 160 $max_upload_size = __('not configured'); … … 403 403 $no_suffix = array( 'farbtastic' ); 404 404 405 $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '2011082 8' );405 $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110829' ); 406 406 407 407 $styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array('wp-admin'), '20110711' ); … … 409 409 410 410 // all colors stylesheets need to have the same query strings (cache manifest compat) 411 $colors_version = '2011082 2';411 $colors_version = '20110829'; 412 412 413 413 // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. … … 659 659 /** 660 660 * Prints the styles queue in the HTML head on admin pages. 661 * 661 * 662 662 * @since 2.8 663 663 */ … … 733 733 /** 734 734 * Determine the concatenation and compression settings for scripts and styles. 735 * 735 * 736 736 * @since 2.8 737 737 */
Note: See TracChangeset
for help on using the changeset viewer.