[wp-trac] [WordPress Trac] #10421: Unique ID on installed plugins

WordPress Trac wp-trac at lists.automattic.com
Wed Jul 15 23:38:41 UTC 2009


#10421: Unique ID on installed plugins
-------------------------+--------------------------------------------------
 Reporter:  williamsba1  |       Owner:             
     Type:  enhancement  |      Status:  new        
 Priority:  normal       |   Milestone:  2.9        
Component:  Plugins      |     Version:             
 Severity:  normal       |    Keywords:  needs-patch
-------------------------+--------------------------------------------------
Changes (by Denis-de-Bernardy):

  * keywords:  has-patch => needs-patch


Comment:

 there's a slight typo:

 {{{
 <tr class='$class plugin-{$plugin_data['Name']}' second>
 }}}

 should at least be:

 {{{
 <tr class='$class plugin-{$plugin_data['Name']} second'>
 }}}


 and probably:

 {{{
 <tr class='$class " . sanitize_html_class('plugin-' .
 $plugin_data['Name'], '') . " second'>
 }}}

 or even this a bit further up:

 {{{
 $class .= ' ' . sanitize_html_class('plugin-' . $plugin_data['Name'], '');
 }}}

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/10421#comment:5>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list