* (bug 12536) User should be able to get MediaWiki version from any page
authorVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sat, 12 Jan 2008 12:31:20 +0000 (12:31 +0000)
committerVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sat, 12 Jan 2008 12:31:20 +0000 (12:31 +0000)
RELEASE-NOTES
includes/Skin.php

index 1ecb203..9746d75 100644 (file)
@@ -124,6 +124,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Added exception hooks
 * (bug 12574) Allow bots to specify whether an edit should be marked as a bot
   edit, via the parameter 'bot'. (Default: '1')
+* (bug 12536) User should be able to get MediaWiki version from any page
 
 
 === Bug fixes in 1.12 ===
index 9d00e1d..92180b6 100644 (file)
@@ -325,6 +325,7 @@ class Skin extends Linker {
                        'wgContentLanguage' => $wgContLang->getCode(),
                        'wgBreakFrames' => $wgBreakFrames,
                        'wgCurRevisionId' => isset( $wgArticle ) ? $wgArticle->getLatest() : 0,
+                       'wgMWVersion' => SpecialVersion::getVersion(),
                );
 
                global $wgLivePreview;