Make WordPress Core

Ticket #26554: 26554.patch

File 26554.patch, 725 bytes (added by joedolson, 9 years ago)

Remove title attribute patch for wp-includes/class-wp-theme.php

  • wp-includes/class-wp-theme.php

     
    658658                                break;
    659659                        case 'Author' :
    660660                                if ( $this->get('AuthorURI') ) {
    661                                         static $attr = null;
    662                                         if ( ! isset( $attr ) )
    663                                                 $attr = esc_attr__( 'Visit author homepage' );
    664                                         $value = sprintf( '<a href="%1$s" title="%2$s">%3$s</a>', $this->display( 'AuthorURI', true, $translate ), $attr, $value );
     661                                        $value = sprintf( '<a href="%1$s">%2$s</a>', $this->display( 'AuthorURI', true, $translate ), $value );
    665662                                } elseif ( ! $value ) {
    666663                                        $value = __( 'Anonymous' );
    667664                                }