(bug 13166) Adding TitleSecureAndSplit hook. Modified patch by Joshua Bacher
[lhc/web/wiklou.git] / includes / SpecialPage.php
index 3be70ee..c9037ea 100644 (file)
@@ -687,9 +687,10 @@ class SpecialPage
                global $wgOut, $wgContLang;
 
                $msg = $wgContLang->lc( $this->name() ) . '-summary';
-               $out = wfMsg( $msg );
-               if ( ! wfEmptyMsg( $msg, $out ) and  $out !== '' and ! $this->including() )
+               $out = wfMsgNoTrans( $msg );
+               if ( ! wfEmptyMsg( $msg, $out ) and  $out !== '' and ! $this->including() ) {
                        $wgOut->addWikiText( $out );
+               }
 
        }