Make WordPress Core

Changeset 12359


Ignore:
Timestamp:
12/10/2009 08:42:45 AM (15 years ago)
Author:
markjaquith
Message:

Use esc_url_raw() on wp:comment_author_url in exports. fixes #9524

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/export.php

    r12109 r12359  
    359359<wp:comment_author><?php echo wxr_cdata($c->comment_author); ?></wp:comment_author>
    360360<wp:comment_author_email><?php echo $c->comment_author_email; ?></wp:comment_author_email>
    361 <wp:comment_author_url><?php echo $c->comment_author_url; ?></wp:comment_author_url>
     361<wp:comment_author_url><?php echo esc_url_raw( $c->comment_author_url ); ?></wp:comment_author_url>
    362362<wp:comment_author_IP><?php echo $c->comment_author_IP; ?></wp:comment_author_IP>
    363363<wp:comment_date><?php echo $c->comment_date; ?></wp:comment_date>
Note: See TracChangeset for help on using the changeset viewer.