Changeset 4270
- Timestamp:
- 10/02/2006 09:07:42 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/template-functions-post.php
r4228 r4270 414 414 foreach ( $page_tree[$parent]['children'] as $page_id ) { 415 415 $cur_page = $page_tree[$page_id]; 416 $title = $cur_page['title'];416 $title = wp_specialchars($cur_page['title']); 417 417 418 418 $css_class = 'page_item'; … … 420 420 $css_class .= ' current_page_item'; 421 421 422 $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page_id) . '" title="' . wp_specialchars($title). '">' . $title . '</a>';422 $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page_id) . '" title="' . $title . '">' . $title . '</a>'; 423 423 424 424 if ( isset($cur_page['ts']) ) {
Note: See TracChangeset
for help on using the changeset viewer.