Index: trunk/phase3/includes/Export.php |
— | — | @@ -685,6 +685,7 @@ |
686 | 686 | * |
687 | 687 | * @param Title $title |
688 | 688 | * @return string |
| 689 | + * @since 1.18 |
689 | 690 | */ |
690 | 691 | public static function canonicalTitle( Title $title ) { |
691 | 692 | if ( $title->getInterwiki() ) { |
— | — | @@ -694,7 +695,7 @@ |
695 | 696 | global $wgContLang; |
696 | 697 | $prefix = str_replace( '_', ' ', $wgContLang->getNsText( $title->getNamespace() ) ); |
697 | 698 | |
698 | | - if ($prefix !== '') { |
| 699 | + if ( $prefix !== '' ) { |
699 | 700 | $prefix .= ':'; |
700 | 701 | } |
701 | 702 | |