diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-10-12 16:21:15 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-10-12 16:21:15 +0000 |
| commit | 3a4570b0fc8b3d6339bef71d17d7701554e0bbf7 (patch) | |
| tree | 2a06e5261263c68d8afd95a6328879dc289cb909 /wp-admin/sidebar.php | |
| parent | b83c34a7010faee0223f6037025c350da12e05e6 (diff) | |
| download | wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.gz wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.xz wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.zip | |
Merge with WP 2.3 - testing use only!
Move pluggable functions out of wpmu-functions and into pluggable.php, fixes #439
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1069 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/sidebar.php')
| -rw-r--r-- | wp-admin/sidebar.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/sidebar.php b/wp-admin/sidebar.php index a2ea264..830a7e2 100644 --- a/wp-admin/sidebar.php +++ b/wp-admin/sidebar.php @@ -13,7 +13,7 @@ if ('b' == $_GET['a']) { <head> <title>WordPress › Posted</title> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=UTF-8" /> -<link rel="stylesheet" href="wp-admin.css" type="text/css" /> +<?php wp_admin_css(); ?> </head> <body> <p>Posted !</p> @@ -28,7 +28,7 @@ if ('b' == $_GET['a']) { <head> <title>WordPress › Sidebar</title> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('blog_charset'); ?>" /> -<link rel="stylesheet" href="wp-admin.css" type="text/css" /> +<?php wp_admin_css(); ?> <style type="text/css" media="screen"> form { padding: 3px; |
