Ticket #26559: 26559.patch
| File 26559.patch, 2.0 KB (added by , 13 years ago) |
|---|
-
wp-includes/author-template.php
171 171 */ 172 172 function get_the_author_link() { 173 173 if ( get_the_author_meta('url') ) { 174 return '<a href="' . esc_url( get_the_author_meta('url') ) . '" title="' . esc_attr( sprintf(__("Visit %s’s website"), get_the_author()) ) . '"rel="author external">' . get_the_author() . '</a>';174 return '<a href="' . esc_url( get_the_author_meta('url') ) . '" rel="author external">' . get_the_author() . '</a>'; 175 175 } else { 176 176 return get_the_author(); 177 177 } … … 236 236 if ( !is_object( $authordata ) ) 237 237 return false; 238 238 $link = sprintf( 239 '<a href="%1$s" title="%2$s" rel="author">%3$s</a>',239 '<a href="%1$s" rel="author">%2$s</a>', 240 240 esc_url( get_author_posts_url( $authordata->ID, $authordata->user_nicename ) ), 241 esc_attr( sprintf( __( 'Posts by %s' ), get_the_author() ) ),242 241 get_the_author() 243 242 ); 244 243 … … 369 368 $return .= '<li>'; 370 369 } 371 370 372 $link = '<a href="' . get_author_posts_url( $author->ID, $author->user_nicename ) . '" title="' . esc_attr( sprintf(__("Posts by %s"), $author->display_name) ) . '">' . $name . '</a>';371 $link = '<a href="' . get_author_posts_url( $author->ID, $author->user_nicename ) . '">' . $name . '</a>'; 373 372 374 373 if ( !empty( $feed_image ) || !empty( $feed ) ) { 375 374 $link .= ' '; … … 379 378 380 379 $link .= '<a href="' . get_author_feed_link( $author->ID ) . '"'; 381 380 382 $alt = $title ='';381 $alt = ''; 383 382 if ( !empty( $feed ) ) { 384 $title = ' title="' . esc_attr( $feed ) . '"';385 383 $alt = ' alt="' . esc_attr( $feed ) . '"'; 386 384 $name = $feed; 387 $link .= $title;388 385 } 389 386 390 387 $link .= '>'; 391 388 392 389 if ( !empty( $feed_image ) ) 393 $link .= '<img src="' . esc_url( $feed_image ) . '" style="border: none;"' . $alt . $title .' />';390 $link .= '<img src="' . esc_url( $feed_image ) . '" style="border: none;"' . $alt . ' />'; 394 391 else 395 392 $link .= $name; 396 393