summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-admin/profile-update.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst/wp-admin/profile-update.php')
-rw-r--r--wp-inst/wp-admin/profile-update.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/wp-inst/wp-admin/profile-update.php b/wp-inst/wp-admin/profile-update.php
deleted file mode 100644
index 4d6595b..0000000
--- a/wp-inst/wp-admin/profile-update.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-$parent_file = 'profile.php';
-$submenu_file = 'profile.php';
-require_once('admin.php');
-
-check_admin_referer('update-profile_' . $user_ID);
-
-if ( !$_POST )
- die( __('No post?') );
-
-$errors = edit_user($user_ID);
-
-if ( is_wp_error( $errors ) ) {
- foreach( $errors->get_error_messages() as $message )
- echo "$message<br />";
- exit;
-}
-
-if ( !isset( $_POST['rich_editing'] ) )
- $_POST['rich_editing'] = 'false';
-update_user_option( $current_user->id, 'rich_editing', $_POST['rich_editing'], true );
-
-do_action('personal_options_update');
-
-if ( 'profile' == $_POST['from'] )
- $to = 'profile.php?updated=true';
-else
- $to = 'profile.php?updated=true';
-
-wp_redirect( $to );
-exit;
-
-?>