mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
42557940a1
git-svn-id: http://svn.automattic.com/wordpress/trunk@3985 1a063a9b-81f0-0310-95a4-ce76da25c4cd
35 lines
687 B
PHP
35 lines
687 B
PHP
<?php
|
|
|
|
$parent_file = 'profile.php';
|
|
$submenu_file = 'profile.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;
|
|
}
|
|
|
|
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;
|
|
|
|
?>
|