Changes between Initial Version and Version 1 of Ticket #18056
- Timestamp:
- 07/07/2013 02:48:44 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18056 – Description
initial v1 2 2 3 3 The code now is: 4 4 {{{ 5 5 <dc:creator><?php the_author() ?></dc:creator> 6 6 }}} 7 7 Shouldn't this be: 8 8 {{{ 9 9 <dc:creator><![CDATA[<?php the_author() ?>]]></dc:creator> 10 10 }}} 11 11 Or: 12 12 {{{ 13 13 <dc:creator><?php htmlspecialchars(the_author()) ?></dc:creator> 14 14 }}} 15 15 This might be a result of a custom author plugin not escaping these characters on the way into the database, but Wordpress should handle this more robustly to prevent plugin authors from messing things up like this.