From 69a52799a5ae8f395865a2396e08822a53d0e278 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 21 Sep 2011 20:04:14 +0000 Subject: [PATCH] Do not output title attributes in the page walker since they match the anchor and are thus superfluous. Props logiclord. fixes #16783 git-svn-id: http://svn.automattic.com/wordpress/trunk@18739 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 3b6d0c0db..c7d489936 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -1042,7 +1042,7 @@ class Walker_Page extends Walker { $css_class = implode(' ', apply_filters('page_css_class', $css_class, $page)); - $output .= $indent . '
  • ' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . ''; + $output .= $indent . '
  • ' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . ''; if ( !empty($show_date) ) { if ( 'modified' == $show_date )