Make WordPress Core


Ignore:
Timestamp:
06/02/2007 12:37:51 AM (18 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/widgets.php

    r5520 r5631  
    1515    define( 'WP_WIDGETS_HEIGHT', 35 * ( count( $wp_registered_widgets ) ) );
    1616?>
    17     <link rel="stylesheet" href="widgets.css?version=<?php bloginfo('version'); ?>" type="text/css" />
     17    <link rel="stylesheet" href="<?php bloginfo( 'wpurl' ); ?>/wp-admin/css/widgets.css?version=<?php bloginfo('version'); ?>" type="text/css" />
    1818    <!--[if IE 7]>
    1919    <style type="text/css">
    20     #palette {float:left;}
     20        #palette { float:left; }
    2121    </style>
    2222    <![endif]-->
     
    2828    if ( get_bloginfo( 'text_direction' ) == 'rtl' ) {
    2929?>
    30     <link rel="stylesheet" href="widgets-rtl.css?version=<?php bloginfo('version'); ?>" type="text/css" />
     30    <link rel="stylesheet" href="<?php bloginfo( 'wpurl' ); ?>/wp-admin/css/widgets-rtl.css?version=<?php bloginfo('version'); ?>" type="text/css" />
    3131<?php
    3232    }
Note: See TracChangeset for help on using the changeset viewer.