Fix sf bug #971799 : some namespaces for ca were incorrects or missings.
[lhc/web/wiklou.git] / languages / LanguageLatin1.php
index 2a4e0e8..a03de91 100644 (file)
@@ -71,7 +71,8 @@ class LanguageLatin1 {
        }
        
        function specialPage( $name ) {
-               return utf8_decode( $this->lang->specialPage( $name ) );
+        # At least one function calls this with Special:Undelete/Article_title, so it needs encoding
+               return utf8_decode( $this->lang->specialPage( utf8_encode( $name ) ) );
        }
        
        function getQuickbarSettings() {
@@ -248,4 +249,4 @@ class LanguageLatin1 {
        }
 }
 
-?>
\ No newline at end of file
+?>