Changeset 3112 for trunk/wp-admin/profile-update.php
- Timestamp:
- 11/16/2005 11:32:38 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/profile-update.php
r2889 r3112 4 4 5 5 check_admin_referer(); 6 7 if ( !$_POST ) 8 die( __('No post?') ); 6 9 7 10 $errors = edit_user($user_ID); … … 14 17 } 15 18 19 if ( !isset( $_POST['rich_editing'] ) ) 20 $_POST['rich_editing'] = 'false'; 21 update_user_option( $current_user->id, 'rich_editing', $_POST['rich_editing'], true ); 22 23 do_action('personal_options_update'); 24 16 25 if ( 'profile' == $_POST['from'] ) 17 26 $to = 'profile.php?updated=true';
Note: See TracChangeset
for help on using the changeset viewer.