Opened 6 years ago
Closed 6 years ago
#4036 closed defect (bug) (fixed)
rich_editing checkbox forgotten on /wp-admin/user-edit.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.2 |
| Component: | Administration | Version: | 2.2 |
| Severity: | major | Keywords: | has-patch |
| Cc: |
Description
This page should be very similar with /wp-admin/profile.php, but the rich_editing setting was forgotten. When an admin "edit a user", this setting fallback to false. The following code should be added to /wp-admin/user-edit.php around line 85 :
<h3><?php _e('Personal Options'); ?></h3> <p><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="true" <?php checked('true', $profileuser->rich_editing); ?> /> <?php _e('Use the visual editor when writing') ?></label></p> <p class="submit"><input type="submit" value="<?php _e('Update User »') ?>" name="submit" /></p>
Maybe we should make something to getting something similar to <?php do_action('profile_personal_options'); ?> in the /wp-admin/user-edit.php page.
WPmu r5116
Attachments (1)
Change History (7)
comment:2
foolswisdom
— 6 years ago
- Milestone changed from 2.3 to 2.2
- Priority changed from low to normal
- Severity changed from normal to major
- Version set to 2.2
kipit, thank you! I experienced this bug, but never tracked down the reproduction steps. I have also seen this in a demo, so it is easy for a person to do a new installation and never discover the Visual editor.
Oups, I wanted to say :
WP r5116 and not WPmu r5116 (ticket backport from WPmu trac ;-))