[wpmu-trac] [WordPress MU Trac] #541: Attributes of self-closing HTML tags being erased by sanitize_post_field

WordPress MU Trac wpmu-trac at lists.automattic.com
Wed Jan 9 16:48:47 GMT 2008


#541: Attributes of self-closing HTML tags being erased by sanitize_post_field
--------------------------+-------------------------------------------------
 Reporter:  dreamer12345  |       Owner:  somebody
     Type:  defect        |      Status:  new     
 Priority:  normal        |   Milestone:  WPMU 1.0
Component:  component1    |     Version:          
 Severity:  normal        |    Keywords:          
--------------------------+-------------------------------------------------
 Hello,

 I found a bug with some "self-closing tags" (like <img ... />) when they
 are in a field which is processed by the function sanitize_post_field.
 The bug occurs when there are no spaces between the last attribute of a
 self-closing tag and the "/>", for example:
 {{{
 <img src="picture.jpg"/>
 }}}
 instead of
 {{{
 <img src="picture.jpg" />
 }}}

 When the first is processed by sanitize_post_field (the one with no space
 between src="picture.jpg" and />), it is transformed to:
 {{{
 <img>
 }}}
 (Yes "<img>" and nothing else).

 I discovered this bug by using sanitize_post_field like this:
 {{{
 sanitize_post_field('post_content', force_balance_tags($my_content),
 $post_ID, 'db');
 }}}

 (At the beginning I just had <img src="picture.jpg">, it was transformed
 to <img src="picture.jpg"/> by force_balance_tags and retransformed to
 <img> by sanitize_post_field)

 Thank you for your attention,

 Frédéric.

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/541>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list