(bug 14212) Undefined variable $retval in Skin::subPageSubtitle()
authorRoan Kattouw <catrope@users.mediawiki.org>
Wed, 21 May 2008 20:07:10 +0000 (20:07 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Wed, 21 May 2008 20:07:10 +0000 (20:07 +0000)
includes/Skin.php

index 4f6422a..a1a3a7d 100644 (file)
@@ -880,7 +880,7 @@ END;
        function subPageSubtitle() {
                $subpages = '';
                if(!wfRunHooks('SkinSubPageSubtitle', array(&$subpages)))
-                       return $retval;
+                       return $subpages;
 
                global $wgOut, $wgTitle, $wgNamespacesWithSubpages;
                if($wgOut->isArticle() && !empty($wgNamespacesWithSubpages[$wgTitle->getNamespace()])) {