Moved profile under users

git-svn-id: https://develop.svn.wordpress.org/trunk@1471 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-07-21 07:23:45 +00:00
parent 0cf35bbafd
commit 240a41a37c
2 changed files with 10 additions and 1 deletions

View File

@ -218,7 +218,7 @@ break;
default:
$parent_file = 'users.php';
include_once('admin-header.php');
$profiledata=get_userdata($user_ID);
@ -227,6 +227,10 @@ default:
$bookmarklet_height= (get_settings('use_trackback')) ? 480 : 440;
?>
<ul id="adminmenu2">
<li><a href="users.php"><?php _e('Authors &amp; Users') ?></a></li>
<li><a class="current"><?php _e('Your Profile') ?></a></li>
</ul>
<?php if (isset($updated)) { ?>
<div class="updated">
<p><strong><?php _e('Profile updated.') ?></strong></p>

View File

@ -177,6 +177,11 @@ default:
$standalone = 0;
include ('admin-header.php');
?>
<ul id="adminmenu2">
<li><a class="current"><?php _e('Authors &amp; Users') ?></a></li>
<li><a href="profile.php"><?php _e('Your Profile') ?></a></li>
</ul>
<?php if (isset($_GET['deleted'])) : ?>
<div class="updated"><p><?php _e('User deleted.') ?></p></div>
<?php endif; ?>