Make WordPress Core


Ignore:
Timestamp:
06/02/2007 12:37:51 AM (16 years ago)
Author:
rob1n
Message:

Move JavaScript to js subfolder, and CSS to css subfolder. see #4334

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/upload.php

    r5628 r5631  
    338338function wp_upload_admin_head() {
    339339    global $wp_locale;
    340     echo "<link rel='stylesheet' href='" . get_option('siteurl') . '/wp-admin/upload.css?version=' . get_bloginfo('version') . "a' type='text/css' />\n";
     340    echo "<link rel='stylesheet' href='" . get_bloginfo('wpurl') . '/wp-admin/css/upload.css?version=' . get_bloginfo('version') . "a' type='text/css' />\n";
    341341    if ( 'rtl' == $wp_locale->text_direction )
    342         echo "<link rel='stylesheet' href='" . get_option('siteurl') . '/wp-admin/upload-rtl.css?version=' . get_bloginfo('version') . "a' type='text/css' />\n";
     342        echo "<link rel='stylesheet' href='" . get_bloginfo('wpurl') . '/wp-admin/css/upload-rtl.css?version=' . get_bloginfo('version') . "a' type='text/css' />\n";
    343343    if ( 'inline' == @$_GET['style'] ) {
    344344        echo "<style type='text/css' media='screen'>\n";
Note: See TracChangeset for help on using the changeset viewer.