Make WordPress Core

Changeset 11327


Ignore:
Timestamp:
05/14/2009 01:34:26 PM (15 years ago)
Author:
azaozz
Message:

Make sure all colors stylesheets have the same version string, see #7262

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/script-loader.php

    r11256 r11327  
    425425    $styles->add_data( 'ie', 'conditional', 'lte IE 7' );
    426426
    427     $styles->add( 'colors', true, array(), '20090509' ); // Register "meta" stylesheet for admin colors
    428     $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20081210'); // for login.php.  Is there a better way?
     427    // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
     428    $styles->add( 'colors', true, array(), '20090514' );
     429    $styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20090514'); // for login.php.  Is there a better way?
    429430    $styles->add_data( 'colors-fresh', 'rtl', true );
    430     $styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), '20081210');
     431    $styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), '20090514');
    431432    $styles->add_data( 'colors-classic', 'rtl', true );
    432433
Note: See TracChangeset for help on using the changeset viewer.