Ticket #26558: 26558.diff
File 26558.diff, 790 bytes (added by , 11 years ago) |
---|
-
bookmark-template.php
59 59 extract( $r, EXTR_SKIP ); 60 60 61 61 $output = ''; // Blank string to start with. 62 62 echo '<div id="aria_bookmarklink">' . '' . '</div>'; 63 63 foreach ( (array) $bookmarks as $bookmark ) { 64 64 if ( !isset($bookmark->recently_updated) ) 65 65 $bookmark->recently_updated = false; … … 95 95 if ( '' != $target ) 96 96 $target = ' target="' . $target . '"'; 97 97 98 $output .= '<a href="' . $the_link . '"' . $rel . $title . $target . ' >';98 $output .= '<a href="' . $the_link . '"' . $rel . $title . $target . 'aria-labelledby="aria_bookmarklink"' . '>'; 99 99 100 100 $output .= $link_before; 101 101