Changeset 11109 for trunk/wp-includes/classes.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r11013 r11109 1188 1188 $css_class = implode(' ', apply_filters('page_css_class', $css_class, $page)); 1189 1189 1190 $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page->ID) . '" title="' . attr ibute_escape(apply_filters('the_title', $page->post_title)) . '">' . $link_before . apply_filters('the_title', $page->post_title) . $link_after . '</a>';1190 $output .= $indent . '<li class="' . $css_class . '"><a href="' . get_page_link($page->ID) . '" title="' . attr(apply_filters('the_title', $page->post_title)) . '">' . $link_before . apply_filters('the_title', $page->post_title) . $link_after . '</a>'; 1191 1191 1192 1192 if ( !empty($show_date) ) { … … 1326 1326 extract($args); 1327 1327 1328 $cat_name = attr ibute_escape( $category->name);1328 $cat_name = attr( $category->name); 1329 1329 $cat_name = apply_filters( 'list_cats', $cat_name, $category ); 1330 1330 $link = '<a href="' . get_category_link( $category->term_id ) . '" '; … … 1332 1332 $link .= 'title="' . sprintf(__( 'View all posts filed under %s' ), $cat_name) . '"'; 1333 1333 else 1334 $link .= 'title="' . attr ibute_escape( apply_filters( 'category_description', $category->description, $category )) . '"';1334 $link .= 'title="' . attr( apply_filters( 'category_description', $category->description, $category )) . '"'; 1335 1335 $link .= '>'; 1336 1336 $link .= $cat_name . '</a>';
Note: See TracChangeset
for help on using the changeset viewer.