Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -12,9 +12,9 @@ |
13 | 13 | === Changes since 1.18.0 === |
14 | 14 | |
15 | 15 | * (bug 32712) Fix for search indexing of pages with certain unicode chars following URL |
| 16 | +* (bug 3901) Lang, hreflang attribs added to sidebar interlanguage links for screen readers |
16 | 17 | |
17 | 18 | |
18 | | - |
19 | 19 | == MediaWiki 1.18 == |
20 | 20 | 2011-11-24 |
21 | 21 | |
Index: branches/REL1_18/phase3/includes/SkinTemplate.php |
— | — | @@ -480,7 +480,9 @@ |
481 | 481 | 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' ? |
482 | 482 | $wgContLang->getLanguageName( $nt->getInterwiki() ) : $l ), |
483 | 483 | 'title' => $nt->getText(), |
484 | | - 'class' => $class |
| 484 | + 'class' => $class, |
| 485 | + 'lang' => $nt->getInterwiki(), |
| 486 | + 'hreflang' => $nt->getInterwiki(), |
485 | 487 | ); |
486 | 488 | } |
487 | 489 | } |