ABSPATH already has a trailing slash. Props Nazgul. fixes #4607

git-svn-id: https://develop.svn.wordpress.org/trunk@5820 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith
2007-07-27 21:28:01 +00:00
parent fbf96b07fc
commit 593eca6f21
8 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -49,9 +49,9 @@ do_action('admin_head');
<div id="user_info"><p><?php printf(__('Howdy, <strong>%s</strong>.'), $user_identity) ?> [<a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Sign Out'); ?></a>, <a href="profile.php"><?php _e('My Profile'); ?></a>] </p></div>
<?php
require(ABSPATH . '/wp-admin/menu-header.php');
require(ABSPATH . 'wp-admin/menu-header.php');
if ( $parent_file == 'options-general.php' ) {
require(ABSPATH . '/wp-admin/options-head.php');
require(ABSPATH . 'wp-admin/options-head.php');
}
?>