profile-update.php no longer needed. see #5736

git-svn-id: https://develop.svn.wordpress.org/trunk@6703 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-02 00:09:12 +00:00
parent 2e6395d081
commit 8f90310070
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
<?php
require_once('admin.php');
check_admin_referer('update-profile_' . $user_ID);
if ( !$_POST )
wp_die( __('No post?') );
$errors = edit_user($user_ID);
if ( is_wp_error( $errors ) ) {
foreach( $errors->get_error_messages() as $message )
echo "$message<br />";
exit;
}
do_action('personal_options_update');
if ( 'profile' == $_POST['from'] )
$to = 'profile.php?updated=true';
else
$to = 'profile.php?updated=true';
wp_redirect( $to );
exit;
?>