b27225b0ca
git-svn-id: https://develop.svn.wordpress.org/trunk@3112 602fd350-edb4-49c9-b593-d223f7449a82
33 lines
576 B
PHP
33 lines
576 B
PHP
<?php
|
|
|
|
require_once('admin.php');
|
|
|
|
check_admin_referer();
|
|
|
|
if ( !$_POST )
|
|
die( __('No post?') );
|
|
|
|
$errors = edit_user($user_ID);
|
|
|
|
if (count($errors) != 0) {
|
|
foreach ($errors as $id => $error) {
|
|
echo $error . '<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;
|
|
|
|
?>
|