Apply esc_html properly in Walker_PageDropdown. fixes #17217.

git-svn-id: https://develop.svn.wordpress.org/trunk@17683 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-04-22 18:24:57 +00:00
parent d4aad7cf1e
commit 738458cab6
1 changed files with 1 additions and 2 deletions

View File

@ -1100,9 +1100,8 @@ class Walker_PageDropdown extends Walker {
if ( $page->ID == $args['selected'] )
$output .= ' selected="selected"';
$output .= '>';
$title = esc_html($page->post_title);
$title = apply_filters( 'list_pages', $page->post_title );
$output .= "$pad$title";
$output .= $pad . esc_html( $title );
$output .= "</option>\n";
}
}