]> scripts.mit.edu Git - autoinstalls/mediawiki.git/commitdiff
MediaWiki 1.17.4 mediawiki-1.17.4
authorEdward Z. Yang <ezyang@mit.edu>
Wed, 15 Aug 2012 11:33:48 +0000 (19:33 +0800)
committerEdward Z. Yang <ezyang@mit.edu>
Wed, 15 Aug 2012 11:33:48 +0000 (19:33 +0800)
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
86 files changed:
.gitreview [new file with mode: 0644]
RELEASE-NOTES
includes/CryptRand.php
includes/DefaultSettings.php
includes/User.php
includes/api/ApiBase.php
includes/api/ApiBlock.php
includes/api/ApiDelete.php
includes/api/ApiDisabled.php
includes/api/ApiEditPage.php
includes/api/ApiEmailUser.php
includes/api/ApiExpandTemplates.php
includes/api/ApiFeedWatchlist.php
includes/api/ApiFormatBase.php
includes/api/ApiFormatDbg.php
includes/api/ApiFormatJson.php
includes/api/ApiFormatPhp.php
includes/api/ApiFormatRaw.php
includes/api/ApiFormatTxt.php
includes/api/ApiFormatWddx.php
includes/api/ApiFormatXml.php
includes/api/ApiFormatYaml.php
includes/api/ApiHelp.php
includes/api/ApiImport.php
includes/api/ApiLogin.php
includes/api/ApiLogout.php
includes/api/ApiMain.php
includes/api/ApiMove.php
includes/api/ApiOpenSearch.php
includes/api/ApiPageSet.php
includes/api/ApiParamInfo.php
includes/api/ApiParse.php
includes/api/ApiPatrol.php
includes/api/ApiProtect.php
includes/api/ApiPurge.php
includes/api/ApiQuery.php
includes/api/ApiQueryAllCategories.php
includes/api/ApiQueryAllLinks.php
includes/api/ApiQueryAllUsers.php
includes/api/ApiQueryAllimages.php
includes/api/ApiQueryAllmessages.php
includes/api/ApiQueryAllpages.php
includes/api/ApiQueryBacklinks.php
includes/api/ApiQueryBase.php
includes/api/ApiQueryBlocks.php
includes/api/ApiQueryCategories.php
includes/api/ApiQueryCategoryInfo.php
includes/api/ApiQueryCategoryMembers.php
includes/api/ApiQueryDeletedrevs.php
includes/api/ApiQueryDisabled.php
includes/api/ApiQueryDuplicateFiles.php
includes/api/ApiQueryExtLinksUsage.php
includes/api/ApiQueryExternalLinks.php
includes/api/ApiQueryFilearchive.php
includes/api/ApiQueryIWBacklinks.php
includes/api/ApiQueryIWLinks.php
includes/api/ApiQueryImageInfo.php
includes/api/ApiQueryImages.php
includes/api/ApiQueryInfo.php
includes/api/ApiQueryLangLinks.php
includes/api/ApiQueryLinks.php
includes/api/ApiQueryLogEvents.php
includes/api/ApiQueryPageProps.php
includes/api/ApiQueryProtectedTitles.php
includes/api/ApiQueryRecentChanges.php
includes/api/ApiQueryRevisions.php
includes/api/ApiQuerySearch.php
includes/api/ApiQuerySiteinfo.php
includes/api/ApiQueryStashImageInfo.php
includes/api/ApiQueryTags.php
includes/api/ApiQueryUserContributions.php
includes/api/ApiQueryUserInfo.php
includes/api/ApiQueryUsers.php
includes/api/ApiQueryWatchlist.php
includes/api/ApiQueryWatchlistRaw.php
includes/api/ApiResult.php
includes/api/ApiRollback.php
includes/api/ApiRsd.php
includes/api/ApiUnblock.php
includes/api/ApiUndelete.php
includes/api/ApiUserrights.php
includes/api/ApiWatch.php
includes/json/Services_JSON.php
maintenance/dtrace/counts.d
maintenance/dtrace/tree.d
maintenance/postgres/mediawiki_mysql2postgres.pl

diff --git a/.gitreview b/.gitreview
new file mode 100644 (file)
index 0000000..f717e08
--- /dev/null
@@ -0,0 +1,5 @@
+[gerrit]
+host=gerrit.wikimedia.org
+port=29418
+project=mediawiki/core.git
+defaultbranch=REL1_17
index c5781a440463be526e658a2f6e180704ddbc4ade..05c00206376fbfe61e8791de7aa3b17f820810a3 100644 (file)
@@ -3,10 +3,10 @@
 Security reminder: MediaWiki does not require PHP's register_globals
 setting since version 1.2.0. If you have it on, turn it '''off''' if you can.
 
-== MediaWiki 1.17.3 ==
-2012-03-21
+== MediaWiki 1.17.4 ==
+2012-04-25
 
-This a maintenance and security release of the MediaWiki 1.17 branch.
+This a maintenance of the MediaWiki 1.17 branch.
 
 === Summary of selected changes in 1.17 ===
 
@@ -35,6 +35,13 @@ Selected changes since MediaWiki 1.16 that may be of interest:
 * The lowest supported version of PHP is now 5.2.3. If necessary, please
   upgrade PHP prior to upgrading MediaWiki.
 
+=== Changes since 1.17.3 ===
+
+* (bug 35961) Hash comparison should always be strict.
+* Fix broken email confirmation expiration caused by MWCryptRand changes.
+* (bug 35671) PHP Notice: Undefined index: gettoken in includes/api/ApiMain.php
+  on line 598.
+
 === Changes since 1.17.2 ===
 
 * (bug 22555) Remove or skip strip markers from tag hooks like &lt;nowiki&gt; in
index 10f379cb2a33cea8a71d3c3aa1cdb8f1336f4a42..e4be1b3788398378d5a929e042d09c0ab72da64c 100644 (file)
@@ -120,7 +120,7 @@ class MWCryptRand {
        /**
         * Randomly hash data while mixing in clock drift data for randomness
         *
-        * @param $data The data to randomly hash.
+        * @param $data string The data to randomly hash.
         * @return String The hashed bytes
         * @author Tim Starling
         */
@@ -166,7 +166,7 @@ class MWCryptRand {
 
        /**
         * Return a rolling random state initially build using data from unstable sources
-        * @return A new weak random state
+        * @return string A new weak random state
         */
        protected function randomState() {
                static $state = null;
@@ -184,6 +184,7 @@ class MWCryptRand {
 
        /**
         * Decide on the best acceptable hash algorithm we have available for hash()
+        * @throws MWException
         * @return String A hash algorithm
         */
        protected function hashAlgo() {
@@ -227,6 +228,7 @@ class MWCryptRand {
         * Generate an acceptably unstable one-way-hash of some text
         * making use of the best hash algorithm that we have available.
         *
+        * @param $data string
         * @return String A raw hash of the data
         */
        protected function hash( $data ) {
@@ -237,6 +239,8 @@ class MWCryptRand {
         * Generate an acceptably unstable one-way-hmac of some text
         * making use of the best hash algorithm that we have available.
         *
+        * @param $data string
+        * @param $key string
         * @return String A raw hash of the data
         */
        protected function hmac( $data, $key ) {
@@ -282,7 +286,7 @@ class MWCryptRand {
                                if ( $iv === false ) {
                                        wfDebug( __METHOD__ . ": mcrypt_create_iv returned false.\n" );
                                } else {
-                                       $bytes .= $iv;
+                                       $buffer .= $iv;
                                        wfDebug( __METHOD__ . ": mcrypt_create_iv generated " . strlen( $iv ) . " bytes of randomness.\n" );
                                }
                                wfProfileOut( __METHOD__ . '-mcrypt' );
@@ -409,6 +413,7 @@ class MWCryptRand {
 
        /**
         * Return a singleton instance of MWCryptRand
+        * @return MWCryptRand
         */
        protected static function singleton() {
                if ( is_null( self::$singleton ) ) {
index 92fcc16b6ea13ba79a3f48c7db54981e439555f7..f9b1c0073f5ec2442d22de04d554c3dca3554e2f 100644 (file)
@@ -34,7 +34,7 @@ if ( !defined( 'MW_PHP4' ) ) {
 /** @endcond */
 
 /** MediaWiki version number */
-$wgVersion = '1.17.3';
+$wgVersion = '1.17.4';
 
 /** Name of the site. It must be changed in LocalSettings.php */
 $wgSitename         = 'MediaWiki';
index 0c951cf605f27d7effeaaa4cd415366ec62ce1d2..c0de2023b8f9b4d6ff8c5bb8fdbbe848e545d448 100644 (file)
@@ -3009,12 +3009,12 @@ class User {
        function confirmationToken( &$expiration ) {
                $now = time();
                $expires = $now + 7 * 24 * 60 * 60;
-               $expiration = 
+               $expiration = wfTimestamp( TS_MW, $expires );
                $token = MWCryptRand::generateHex( 32 );
                $hash = md5( $token );
                $this->load();
                $this->mEmailToken = $hash;
-               $this->mEmailTokenExpires = wfTimestamp( TS_MW, $expires );
+               $this->mEmailTokenExpires = $expiration;
                return $token;
        }
 
@@ -3595,7 +3595,7 @@ class User {
                } elseif ( $type == ':B:' ) {
                        # Salted
                        list( $salt, $realHash ) = explode( ':', substr( $hash, 3 ), 2 );
-                       return md5( $salt.'-'.md5( $password ) ) == $realHash;
+                       return md5( $salt.'-'.md5( $password ) ) === $realHash;
                } else {
                        # Old-style
                        return self::oldCrypt( $password, $userId ) === $hash;
index 175fa6a1505e2508a9a1df6fdab645b0c0a5713d..bc25ca61dc4f678a049116ebdf5c45a8a7878d25 100644 (file)
@@ -1363,6 +1363,6 @@ abstract class ApiBase {
         * @return string
         */
        public static function getBaseVersion() {
-               return __CLASS__ . ': $Id: ApiBase.php 82730 2011-02-24 16:03:05Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 875b8aebebacf50866e37463e8ef0f413557cc5d..25506ac0a1218a4543b68ad0105b1d18f2bbeaa0 100644 (file)
@@ -199,6 +199,6 @@ class ApiBlock extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiBlock.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index fbf623914a6c9ed49c430fefae14c40a6079eb4a..b4a6ad00318a8bc58fa2887729d015bc4cdb685b 100644 (file)
@@ -279,6 +279,6 @@ class ApiDelete extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiDelete.php 77141 2010-11-23 10:04:38Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
\ No newline at end of file
index f83bfdc9cf97502c38116e796fa9aa8f77d70949..f4da99ab815924f49afd3e300be7677735400d80 100644 (file)
@@ -70,6 +70,6 @@ class ApiDisabled extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiDisabled.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 75cc0ba2cbc99161f921a7755c205ae7ae2e88e4..88e7a8504aea02c99c18650b8aa1b2ed665d684e 100644 (file)
@@ -517,6 +517,6 @@ class ApiEditPage extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiEditPage.php 90492 2011-06-20 22:39:10Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index ab58eb18952b7fc4034b02b02f7170b3ab6c5c89..dba4ea2942e8dfb3874a3014e285172464c45e67 100644 (file)
@@ -145,6 +145,6 @@ class ApiEmailUser extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiEmailUser.php 85354 2011-04-04 18:25:31Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 6f2df1b8d8fb54b45e4463e289dc8c33b65d4742..fe281ccc5f0c1e8b2031db6fa75c0f56211e637a 100644 (file)
@@ -110,6 +110,6 @@ class ApiExpandTemplates extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiExpandTemplates.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e1ba61f6f0f3102eefbd8f3c99055761bc77a6fb..7b463856507b168f7f10692ad89e961df1fd7159 100644 (file)
@@ -205,6 +205,6 @@ class ApiFeedWatchlist extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFeedWatchlist.php 77674 2010-12-03 19:47:22Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 9d1dfbc12644b7578c839dad3b50f2d0287ee723..8b371652d87676150cce9b9c65c2c9ff9f84ab5a 100644 (file)
@@ -299,7 +299,7 @@ See <a href='http://www.mediawiki.org/wiki/API'>complete documentation</a>, or
        }
 
        public static function getBaseVersion() {
-               return __CLASS__ . ': $Id: ApiFormatBase.php 75970 2010-11-04 00:55:30Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
 
@@ -368,6 +368,6 @@ class ApiFormatFeedWrapper extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatBase.php 75970 2010-11-04 00:55:30Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
\ No newline at end of file
index d4aeb0b8f820461da60275e6573d42dbb297ac1e..a9f66df9960673069259d79c04f345e84181a4f3 100644 (file)
@@ -55,6 +55,6 @@ class ApiFormatDbg extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatDbg.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 7c02baa02bee119b3c6f00778ffba82d8faa1b59..baddfa10b6facd0c2e0cd9d30a8ff783337b5872 100644 (file)
@@ -97,6 +97,6 @@ class ApiFormatJson extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatJson.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e83941d448efa05713fceb68f5166d55d6b453ff..6d2e53a7dada866265837140e592b03ac86c92f7 100644 (file)
@@ -52,6 +52,6 @@ class ApiFormatPhp extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatPhp.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 98a506522feaa6b077264beb9bd4f8818137568e..23879a65cfa9f5509e8d9d22023d10b123411378 100644 (file)
@@ -73,6 +73,6 @@ class ApiFormatRaw extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatRaw.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index bbb268f1e1cb8d7892860dc3db6a46b044837345..ab320559677a40f90c9cab1d0d2dd9bcc23ad80b 100644 (file)
@@ -55,6 +55,6 @@ class ApiFormatTxt extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatTxt.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 6c1e3066c6856b1a76dac8569b3bef1794dc60de..a8967b522f6ea59bede5585d68c76fb8d4cb49b7 100644 (file)
@@ -117,6 +117,6 @@ class ApiFormatWddx extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatWddx.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 45ab73eff132200f53c698cf8cc8ecb03255e3d2..29d40d089e34f361e530e9017d6ddbdfaabb69e1 100644 (file)
@@ -208,6 +208,6 @@ class ApiFormatXml extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatXml.php 73753 2010-09-25 16:56:03Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index ccf527462e6009fa18ced06dbf210727cf7946b1..e849c465310681c400ae2641628f04df1f20e3d3 100644 (file)
@@ -52,6 +52,6 @@ class ApiFormatYaml extends ApiFormatBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiFormatYaml.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index eedbde13601cd77d88063a4956361b6777cb96d3..cb896e5f2df1f32308589a4d0306cef155427cc7 100644 (file)
@@ -150,6 +150,6 @@ class ApiHelp extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiHelp.php 73863 2010-09-28 02:33:43Z brion $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 1b5153f94d44291afb4ee9661737384a42d312a6..7b3fe8e47aac536b1ce4001fd116580d0bc2e4cc 100644 (file)
@@ -160,7 +160,7 @@ class ApiImport extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiImport.php 77800 2010-12-05 14:22:49Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
 
index 0675de7b522cf253519e592415355cc94413e23e..987d0468ee819990004f8bdc1b53c00a8fe135bc 100644 (file)
@@ -206,6 +206,6 @@ class ApiLogin extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiLogin.php 76080 2010-11-05 11:54:35Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 89326915ef75ab9b1982eb9e3cb9c3a2c5bc0472..72b646ed4ed9062184d151c9d9d6a7d9ef32d976 100644 (file)
@@ -74,6 +74,6 @@ class ApiLogout extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiLogout.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 46a8df33e81ac641df1f85e56bce8840d7410a19..2063b8a261987ed9ced3fe9f507eda57ec78a8e8 100644 (file)
@@ -547,8 +547,14 @@ class ApiMain extends ApiBase {
                $moduleParams = $module->extractRequestParams();
 
                // Die if token required, but not provided (unless there is a gettoken parameter)
+               if ( isset( $moduleParams['gettoken'] ) ) {
+                       $gettoken = $moduleParams['gettoken'];
+               } else {
+                       $gettoken = false;
+               }
+
                $salt = $module->getTokenSalt();
-               if ( $salt !== false && !$moduleParams['gettoken'] ) {
+               if ( $salt !== false && !$gettoken ) {
                        if ( !isset( $moduleParams['token'] ) ) {
                                $this->dieUsageMsg( array( 'missingparam', 'token' ) );
                        } else {
@@ -934,7 +940,7 @@ class ApiMain extends ApiBase {
        public function getVersion() {
                $vers = array ();
                $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n    http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/";
-               $vers[] = __CLASS__ . ': $Id: ApiMain.php 76196 2010-11-06 16:11:19Z reedy $';
+               $vers[] = __CLASS__ . ': $Id$';
                $vers[] = ApiBase::getBaseVersion();
                $vers[] = ApiFormatBase::getBaseVersion();
                $vers[] = ApiQueryBase::getBaseVersion();
index a93188bf6f9d2634a7ee01c7d4b8783752ec2203..c5cbe5ecec4fbba60355f9db587652cda0adb0f7 100644 (file)
@@ -248,6 +248,6 @@ class ApiMove extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiMove.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 885766d2c6cb3ba39a164799a350f68954e5ac8c..9c0764ce421a6754bef3268b907de431bb1be1ac 100644 (file)
@@ -126,6 +126,6 @@ class ApiOpenSearch extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiOpenSearch.php 79720 2011-01-06 14:48:34Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 1cb12c07a7117b2175757dcdbed45f26fde357ca..d13df81be6e78dc4037b9cf384ff74a02fda7fd9 100644 (file)
@@ -744,6 +744,6 @@ class ApiPageSet extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiPageSet.php 76196 2010-11-06 16:11:19Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index a2c0bd1169fe9e55cd4a1c710de241378b17c3c1..8ba3f12733676ca0eefd2857511cc7c1a33c450c 100644 (file)
@@ -218,6 +218,6 @@ class ApiParamInfo extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiParamInfo.php 87170 2011-04-30 16:57:22Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 2d12c23348181d7733571f86a866e58598bc59b5..e7b96815af8609aabb39923b5506ede62a07b820 100644 (file)
@@ -553,6 +553,6 @@ class ApiParse extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiParse.php 89672 2011-06-07 18:45:20Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 08835743c8c1967b60c81e2def102d74ed8854b2..04afd1dc585809d9cad0216168a96f096d7771a1 100644 (file)
@@ -109,6 +109,6 @@ class ApiPatrol extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiPatrol.php 78437 2010-12-15 14:14:16Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 3a1d18e0c9e3c588ab4aadd24232e86f64ca5cb4..7f2b83d1ff9dc8fbfdf7f0bf91912ef34573030f 100644 (file)
@@ -223,6 +223,6 @@ class ApiProtect extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiProtect.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index a17abf16f6391864a5103453d527a78e841554eb..2f4648be2c381f2be6ea2b27f7cce067cac898e7 100644 (file)
@@ -112,6 +112,6 @@ class ApiPurge extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiPurge.php 74944 2010-10-18 09:19:20Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index f88aa8502ec25c09fbba4ee405d9dc85cb2c5817..ec4da791f3bc7a39aea5704f43fd49a44beb92cd 100644 (file)
@@ -691,7 +691,7 @@ class ApiQuery extends ApiBase {
        public function getVersion() {
                $psModule = new ApiPageSet( $this );
                $vers = array();
-               $vers[] = __CLASS__ . ': $Id: ApiQuery.php 80897 2011-01-24 18:57:42Z catrope $';
+               $vers[] = __CLASS__ . ': $Id$';
                $vers[] = $psModule->getVersion();
                return $vers;
        }
index c14732529f091e9315a01843e66ec0e3a5b05ae8..9f20ed86f2be166745c1096d36f352f721c2e0a1 100644 (file)
@@ -186,6 +186,6 @@ class ApiQueryAllCategories extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllCategories.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 7878484598fb5d41acafbf6d2caa2c2e76d37a38..7f619c53db060c4b48e8c0a53c423374390b8b17 100644 (file)
@@ -229,6 +229,6 @@ class ApiQueryAllLinks extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllLinks.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 77f507fcccf1758715e326fb40129aebab00508f..e31814d49b6b60533cb87d8e086a36c1a895b202 100644 (file)
@@ -260,6 +260,6 @@ class ApiQueryAllUsers extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllUsers.php 85354 2011-04-04 18:25:31Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index a7825519995b2b2e6fc6ff7d7e25b3aea93e8b6f..951854b72cc9e3ac2ba5d594f2896e280e9f9515 100644 (file)
@@ -237,6 +237,6 @@ class ApiQueryAllimages extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllimages.php 71838 2010-08-28 01:18:18Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 81ff255a4e7d187c3b1a77dd0dc9fa3b62d8f0e7..3c544280c5c9822e7ca8bd2d0275b82c56505d2b 100644 (file)
@@ -195,6 +195,6 @@ class ApiQueryAllmessages extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllmessages.php 73756 2010-09-25 17:08:23Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 21f729163401522b0a5cf8e5868fa3de6cf3d095..1a2196c5f04013caf8b339358e6856f298acb68d 100644 (file)
@@ -296,6 +296,6 @@ class ApiQueryAllpages extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryAllpages.php 85354 2011-04-04 18:25:31Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index b412d2d6bd583aad647b5ca582648f4f5337be77..eb2c9c053878d8a1f6a2b93c8281fd3d49a7b3b7 100644 (file)
@@ -497,6 +497,6 @@ class ApiQueryBacklinks extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryBacklinks.php 75921 2010-11-03 12:49:21Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 61a5b4c89ca7d4d81c1fd4940f74f93feba9f5af..477b740a017f88b5f7691685272c526a45615f68 100644 (file)
@@ -491,7 +491,7 @@ abstract class ApiQueryBase extends ApiBase {
         * @return string
         */
        public static function getBaseVersion() {
-               return __CLASS__ . ': $Id: ApiQueryBase.php 85435 2011-04-05 14:00:08Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
 
index 4edda645247667cfdb39786aeb044c0f7b4112b8..f0da49ca679079e2d08dcef7c8d21246228ff248 100644 (file)
@@ -305,6 +305,6 @@ class ApiQueryBlocks extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryBlocks.php 73858 2010-09-28 01:21:15Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index b2769dc242dae7c355d14a8bed318322fe41199f..9e801f0a55423c0ae5848a5e844ee023e044ff64 100644 (file)
@@ -247,6 +247,6 @@ class ApiQueryCategories extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryCategories.php 86474 2011-04-20 13:22:05Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index d4b64025d8c8b18c15ef42e6b21f8db2b4a53e34..4d67a19e114f0c91b50cf0311d726e0dd7b4725e 100644 (file)
@@ -120,6 +120,6 @@ class ApiQueryCategoryInfo extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryCategoryInfo.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index bbcf8b9b33c35bc1ebb150602f763b3b6adbbe08..14beee0a816a703d70fa33f162ea9a7c75f21e4d 100644 (file)
@@ -364,6 +364,6 @@ class ApiQueryCategoryMembers extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryCategoryMembers.php 86474 2011-04-20 13:22:05Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 523862c08b0327a541be7675fa15abfd74ddf0dc..936e5365df01ce8948898ee1dbe3dc30e69982b0 100644 (file)
@@ -372,6 +372,6 @@ class ApiQueryDeletedrevs extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryDeletedrevs.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index b57120690ed1a8913d2954d1fbd7ee4c81ebefee..479acee15748ecda253cbc8941c4a3ec75285308 100644 (file)
@@ -68,6 +68,6 @@ class ApiQueryDisabled extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryDisabled.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index ffe98038c95de42045a1d1f7022eac0933db213c..dd6f780b8e7aaad9fc2610b56c36ce670195a55e 100644 (file)
@@ -165,6 +165,6 @@ class ApiQueryDuplicateFiles extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryDuplicateFiles.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index ecd9e69931da3b1abc7c19f4bcd9968c06fc5f6c..7205a785844f87b47f05fbade8e3a0ab6fedf385 100644 (file)
@@ -229,6 +229,6 @@ class ApiQueryExtLinksUsage extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryExtLinksUsage.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index fbfcbfb93c7c7e24367c65d8f205ce6698c75b03..083481c8132128abed91ae6c3664799989326da0 100644 (file)
@@ -120,6 +120,6 @@ class ApiQueryExternalLinks extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryExternalLinks.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 05ccb346a6096d29c0cb86d40df831cb15e4e5c3..a80866b8619fba49ee93acb1e848fa22a449544b 100644 (file)
@@ -259,6 +259,6 @@ class ApiQueryFilearchive extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryFilearchive.php 85354 2011-04-04 18:25:31Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 6958a253039775699b34767543eefca96ccc6cd9..3b30252fab83ccccb6efb7665335ad6e51cc5914 100644 (file)
@@ -212,6 +212,6 @@ class ApiQueryIWBacklinks extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryIWBacklinks.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e980d6a5a7c803148627c8a6edebe10d090213c2..5a5b452d2cfa848cceeb3e26b16b9312f5717c30 100644 (file)
@@ -153,6 +153,6 @@ class ApiQueryIWLinks extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryIWLinks.php 77080 2010-11-21 17:27:13Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 21696be2bd285174c92e82e5bfcb2bbbb711477b..6853c7d926252fba9b022f9dcd01896ad534a36a 100644 (file)
@@ -475,6 +475,6 @@ class ApiQueryImageInfo extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryImageInfo.php 85435 2011-04-05 14:00:08Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index af2920c7e8e31e33ac69a2eb97a01c952910227a..2fd183a3c709924c697576db95cdd67973d73a10 100644 (file)
@@ -166,6 +166,6 @@ class ApiQueryImages extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryImages.php 73543 2010-09-22 16:50:09Z platonides $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 59f61de104e1f4218ed3d2586abe20be8e9ab62b..8ffb2e22b8c104c4ee65a440140f11dd0e666539 100644 (file)
@@ -701,6 +701,6 @@ class ApiQueryInfo extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryInfo.php 78439 2010-12-15 14:23:46Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index c2ecbfee9cdfeeed2a9c83e2dce144eaa79a980b..60e33709fe944736ceb2c2af6710225f4d2a4e78 100644 (file)
@@ -146,6 +146,6 @@ class ApiQueryLangLinks extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryLangLinks.php 77660 2010-12-03 14:44:07Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 4f3bad3b017ecf69f59e94de361f50e4e96aa0a6..da2fd99b6f1dfa242d8096d3390c3b71b564ad3f 100644 (file)
@@ -235,6 +235,6 @@ class ApiQueryLinks extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryLinks.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 7d69ca390e5a878407d604a17af5e700a15f2e87..ee6f1ebb2ddd3b8f5d44f70b16c2c59b4478c0ac 100644 (file)
@@ -428,6 +428,6 @@ class ApiQueryLogEvents extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryLogEvents.php 74535 2010-10-09 00:01:45Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 894e812d2f1c9c949199d6f99e65d8897d8bef7f..e6951cf4d0037b1572e8feb24ef29c463b990897 100644 (file)
@@ -145,6 +145,6 @@ class ApiQueryPageProps extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryPageProps.php 85211 2011-04-02 21:01:00Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e647c39fd4cb142165fb277922b99e296ec62311..d2d2b869b85b036d6d54567d484e61f53fb0b354 100644 (file)
@@ -223,6 +223,6 @@ class ApiQueryProtectedTitles extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryProtectedTitles.php 71838 2010-08-28 01:18:18Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index fb0d42b84c3f9bc2765f041b9be5f6ce2a2af104..2aecea85df87de440b49c7c0f6239b08fc42e315 100644 (file)
@@ -608,6 +608,6 @@ class ApiQueryRecentChanges extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryRecentChanges.php 78437 2010-12-15 14:14:16Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 50206785dbc4128fb209a6e237a81390fc68a76f..44da15fee320193817e23b0542d971dd7de9f5b0 100644 (file)
@@ -686,6 +686,6 @@ class ApiQueryRevisions extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryRevisions.php 108686 2012-01-11 21:58:58Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 3cf693af88072fa23f310e44e581a81e8a3b2cc6..637f735887e5e7988c2de01877ba1c249545b499 100644 (file)
@@ -292,6 +292,6 @@ class ApiQuerySearch extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQuerySearch.php 76300 2010-11-08 12:23:24Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 379a422858e4554309cc2ab92810e53bc34d50d1..9e856888f9777b193799b8a6f1dce849cbe28c07 100644 (file)
@@ -531,6 +531,6 @@ class ApiQuerySiteinfo extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQuerySiteinfo.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 769b3e9dba9cf6c515042dff9269197bfe32e69a..691ac3086f0fb75d53838479ac52919c166aa2a7 100644 (file)
@@ -145,7 +145,7 @@ class ApiQueryStashImageInfo extends ApiQueryImageInfo {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryStashImageInfo.php 81000 2011-01-25 22:49:34Z catrope $';
+               return __CLASS__ . ': $Id$';
        }
 
 }
index e88ec9b500d9cbe19e874a3fff13ed0f04288b4a..eec15fbc13a8543b71e43edf561995627b9a776c 100644 (file)
@@ -183,6 +183,6 @@ class ApiQueryTags extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryTags.php 73858 2010-09-28 01:21:15Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 5d63fa60455070b0e69efff2194a26709cc9eaf4..3be30238b11f094badfcdd21e360ed39e1ca216f 100644 (file)
@@ -463,6 +463,6 @@ class ApiQueryContributions extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryUserContributions.php 75096 2010-10-20 18:50:33Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index ec7b74b3f85e9d93b706a6ac89e0a477c1b8e322..f075ad413e23bb7c5a5b6a1226a2428454d33cc9 100644 (file)
@@ -225,6 +225,6 @@ class ApiQueryUserInfo extends ApiQueryBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryUserInfo.php 75937 2010-11-03 17:01:21Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 2619d200071e06d492b45726345b94693a2bafeb..0632aeeebf9e3251bf91dc2654f34fd6b3049531 100644 (file)
@@ -298,6 +298,6 @@ if ( !defined( 'MEDIAWIKI' ) ) {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryUsers.php 85354 2011-04-04 18:25:31Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 784f89c0332ec3fc6bc98e0bdf06bc613e2c0023..5f9310d4367c3de5fdf3a5aeb313896847d8049f 100644 (file)
@@ -424,6 +424,6 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryWatchlist.php 85435 2011-04-05 14:00:08Z demon $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 0e5617e32f61b1589eebb39cadaf0788d0adad0b..9b6b27f849bbed0eb17c9cdd992c4430c81264f2 100644 (file)
@@ -201,6 +201,6 @@ class ApiQueryWatchlistRaw extends ApiQueryGeneratorBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiQueryWatchlistRaw.php 70647 2010-08-07 19:59:42Z ialex $';
+               return __CLASS__ . ': $Id$';
        }
 }
\ No newline at end of file
index 9d42a58ebc1191965b0e693c4561ce397bc191ac..ee1923fd8938df3f512df9cf3facfbd39e7f8eba 100644 (file)
@@ -341,6 +341,6 @@ class ApiResult extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiResult.php 74230 2010-10-03 19:07:11Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e31bfed8672459a9e66006445d99c2db8ef7da21..7783e7ad77b713b5a7f40fa8e43f2c20ec751256 100644 (file)
@@ -184,6 +184,6 @@ class ApiRollback extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiRollback.php 75602 2010-10-28 00:04:48Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 7bc4722c785591fc90a1edf439a61ec4bb4fd344..1274c85cfd88f54dd8832483391f53589a16d558 100644 (file)
@@ -160,7 +160,7 @@ class ApiRsd extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiRsd.php 76195 2010-11-06 15:57:15Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
 
@@ -175,6 +175,6 @@ class ApiFormatXmlRsd extends ApiFormatXml {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiRsd.php 76195 2010-11-06 15:57:15Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 4f6e4fb7850771a39347d0cf85e949e66bf9b1cc..45d951e66c3fab38bd2cbaa077b29107ba0f52c0 100644 (file)
@@ -145,6 +145,6 @@ class ApiUnblock extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiUnblock.php 74098 2010-10-01 20:12:50Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 3c7d91a5b5d2810286c304e3effd66d860697b6d..7205d05ded88314fc21392d87e7ca253a3d1cd98 100644 (file)
@@ -159,6 +159,6 @@ class ApiUndelete extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiUndelete.php 74098 2010-10-01 20:12:50Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index f9fe9ad225be186a1e82ea5506e4b974c2bababc..8b3adf33a332e186dbaa2e582d0585735bcc31d6 100644 (file)
@@ -139,6 +139,6 @@ class ApiUserrights extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiUserrights.php 75602 2010-10-28 00:04:48Z reedy $';
+               return __CLASS__ . ': $Id$';
        }
 }
index e9560a4dd1db6197dff2ad8e5466b2d1002a71de..81ded1807621d8845b686f0daca5c791bf1bd3a6 100644 (file)
@@ -113,6 +113,6 @@ class ApiWatch extends ApiBase {
        }
 
        public function getVersion() {
-               return __CLASS__ . ': $Id: ApiWatch.php 77192 2010-11-23 22:05:27Z btongminh $';
+               return __CLASS__ . ': $Id$';
        }
 }
index 5b4e0503669aff4c83eff8f8abd069f296618d11..2c83d19ca7b8403074303653fdaa995e1ac99729 100644 (file)
@@ -51,7 +51,7 @@
 * @author Matt Knapp <mdknapp[at]gmail[dot]com>
 * @author Brett Stimmerman <brettstimmerman[at]gmail[dot]com>
 * @copyright 2005 Michal Migurski
-* @version CVS: $Id: Services_JSON.php 90492 2011-06-20 22:39:10Z reedy $
+* @version CVS: $Id$
 * @license http://www.opensource.org/licenses/bsd-license.php
 * @see http://pear.php.net/pepr/pepr-proposal-show.php?id=198
 */
index 13725d9932bb737fe029951e9a76f17fc7b09b33..bedb45473623866d5bff775914b10e1266d6abf9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This software is in the public domain.
  *
- * $Id: counts.d 10510 2005-08-15 01:46:19Z kateturner $
+ * $Id$
  */
 
 #pragma D option quiet
index 2f16e41d9610e9026fbb7e7ba2c666e28845ae1f..a799cb12fc39205835fce9f65fe8fee839290d2d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This software is in the public domain.
  *
- * $Id: tree.d 10510 2005-08-15 01:46:19Z kateturner $
+ * $Id$
  */
 
 #pragma D option quiet
index 2b2bf50e132ee3241ee2bc707d0c3a7f2cc84a59..416defd5942189b8239b22630d2fb04ab74b03e9 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 
 ## Convert data from a MySQL mediawiki database into a Postgres mediawiki database
-## svn: $Id: mediawiki_mysql2postgres.pl 65542 2010-04-26 13:46:04Z demon $
+## svn: $Id$
 
 ## NOTE: It is probably easier to dump your wiki using maintenance/dumpBackup.php
 ## and then import it with maintenance/importDump.php
@@ -181,7 +181,7 @@ $MYSQLSOCKET and $conninfo .= "\n--   socket    $MYSQLSOCKET";
 print qq{
 -- Dump of MySQL Mediawiki tables for import into a Postgres Mediawiki schema
 -- Performed by the program: $0
--- Version: $VERSION (subversion }.q{$LastChangedRevision: 65542 $}.qq{)
+-- Version: $VERSION (subversion }.q{$LastChangedRevision$}.qq{)
 -- Author: Greg Sabino Mullane <greg\@turnstep.com> Comments welcome
 --
 -- This file was created: $now