Changeset 20326 for trunk/wp-includes/general-template.php
- Timestamp:
- 03/30/2012 01:10:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r19936 r20326 2101 2101 2102 2102 echo apply_filters( 'wp_admin_css', "<link rel='stylesheet' href='" . esc_url( wp_admin_css_uri( $file ) ) . "' type='text/css' />\n", $file ); 2103 if ( is_rtl() )2103 if ( function_exists( 'is_rtl' ) && is_rtl() ) 2104 2104 echo apply_filters( 'wp_admin_css', "<link rel='stylesheet' href='" . esc_url( wp_admin_css_uri( "$file-rtl" ) ) . "' type='text/css' />\n", "$file-rtl" ); 2105 2105 }
Note: See TracChangeset
for help on using the changeset viewer.