Index: trunk/extensions/Translate/tag/PageTranslationHooks.php |
— | — | @@ -217,7 +217,7 @@ |
218 | 218 | if ( $parser->getTitle()->getText() === $_title->getText() ) { |
219 | 219 | $languages[] = "$label"; |
220 | 220 | } else { |
221 | | - $languages[] = $sk->link( $_title, $label, array(), array(), array( 'known' ) ); |
| 221 | + $languages[] = $sk->linkKnown( $_title, $label ); |
222 | 222 | } |
223 | 223 | } |
224 | 224 | |
— | — | @@ -455,7 +455,7 @@ |
456 | 456 | $href = SpecialPage::getTitleFor( 'Export' )->getLocalUrl( $params ); |
457 | 457 | $linkText = wfMsgHtml( 'tpt-download-page' ); |
458 | 458 | |
459 | | - print "<li id=\"t-download-as-pdf\"><a href=\"$href\" rel=\"nofollow\">$linkText</a></li>"; |
| 459 | + print "<li id=\"t-export-translationpages\"><a href=\"$href\" rel=\"nofollow\">$linkText</a></li>"; |
460 | 460 | return true; |
461 | 461 | } |
462 | 462 | |