[wp-trac] [WordPress Trac] #4434: Add id='passwords' to password fieldset in wp-admin/profile.php

WordPress Trac wp-trac at lists.automattic.com
Tue Jun 12 15:34:38 GMT 2007


#4434: Add id='passwords' to password fieldset in wp-admin/profile.php
----------------------------+-----------------------------------------------
 Reporter:  Otto42          |       Owner:  anonymous
     Type:  enhancement     |      Status:  new      
 Priority:  high            |   Milestone:           
Component:  Administration  |     Version:  2.2      
 Severity:  normal          |    Keywords:           
----------------------------+-----------------------------------------------
 Change this:
 {{{
 <fieldset>
 <legend><?php _e('Update Your Password'); ?></legend>
 }}}

 to this:
 {{{
 <fieldset id='passwords'>
 <legend><?php _e('Update Your Password'); ?></legend>
 }}}

 Reasoning: This would allow for a very simple plugin to do essentially the
 same thing that is given here:
 http://wordpress.com/blog/2007/06/07/how-strong-is-your-password/

 All that would then be required of a plugin would be a hook to
 'admin_head' to call wp_enqueue_script('jquery') and a hook to
 'show_user_profile' to include the small amount of necessary
 html+javascript to do the password strength indicator.

 Further suggestion: All fieldsets on profile.php should be given unique
 ID's.

-- 
Ticket URL: <http://trac.wordpress.org/ticket/4434>
WordPress Trac <http://trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list