Changeset 18503 for trunk/wp-admin/load-styles.php
- Timestamp:
- 08/03/2011 11:56:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/load-styles.php
r18464 r18503 126 126 } 127 127 128 if ( strpos( $style->src, '/wp-includes/css/' ) === 0 ) 129 $out .= str_replace( '../images/', '../wp-includes/images/', $content ); 130 else 128 if ( strpos( $style->src, '/wp-includes/css/' ) === 0 ) { 129 $content = str_replace( '../images/', '../wp-includes/images/', $content ); 130 $out .= str_replace( '../js/tinymce/', '../wp-includes/js/tinymce/', $content ); 131 } else { 131 132 $out .= str_replace( '../images/', 'images/', $content ); 133 } 132 134 } 133 135
Note: See TracChangeset
for help on using the changeset viewer.