(bug 20203) "Powered by Mediawiki" now has height/width on image tag
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 13 Aug 2009 00:47:56 +0000 (00:47 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 13 Aug 2009 00:47:56 +0000 (00:47 +0000)
RELEASE-NOTES
includes/Skin.php

index 0e3a414..bc6a4d6 100644 (file)
@@ -402,6 +402,7 @@ this. Was used when mwEmbed was going to be an extension.
 * Do not transform EXIF fields with pure text to avoid results like
   foo,bar@example,com
 * (bug 20176) Fix login/logout links in skin CologneBlue
+* (bug 20203) "Powered by Mediawiki" now has height/width on image tag
 
 == API changes in 1.16 ==
 
index 38b6138..345ae09 100644 (file)
@@ -1503,7 +1503,7 @@ END;
        function getPoweredBy() {
                global $wgStylePath;
                $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
-               $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>';
+               $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" height="31" width="88" alt="Powered by MediaWiki" /></a>';
                return $img;
        }