﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
17217	Walker_PageDropdown doesn't filter titles correctly	Otto42		"The Walker_PageDropdown has this code:

{{{
$title = esc_html($page->post_title);
$title = apply_filters( 'list_pages', $page->post_title );
}}}

Meaning that the esc_html is not applied properly, since $title just gets replaces with the $post_title again.

Fix is this:
{{{
$title = esc_html($page->post_title);
$title = apply_filters( 'list_pages', $title );
}}}

Patch attached."	defect (bug)	closed	normal	3.1.2	Administration	3.1	normal	fixed	has-patch	
