| 517 | | $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page->ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '">' . apply_filters('the_title', $page->post_title) . '</a>'; |
| | 517 | // Process the title and the title attribute separately. |
| | 518 | $title = apply_filters('the_title', $page->post_title); |
| | 519 | $titleAttribute = apply_filters('walker_page_title',$title, $page); |
| | 520 | |
| | 521 | $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page->ID) . '" title="' . attribute_escape($titleAttribute) . '">' . $title . '</a>'; |