From: Ryan Schmidt Date: Sat, 13 Dec 2008 05:02:26 +0000 (+0000) Subject: * (bug 16623) Add missing

tag in Special:LockDB -- patch by Nakon X-Git-Tag: 1.31.0-rc.0~43999 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=0afb910034460b6f4db6c2f2cbbe9155146e25a3;p=lhc%2Fweb%2Fwiklou.git * (bug 16623) Add missing

tag in Special:LockDB -- patch by Nakon --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 52cdcba950..9a256be1ec 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -401,6 +401,7 @@ The following extensions are migrated into MediaWiki 1.14: information. Went ahead and rewrote SpecialStatistics to subclass SpecialPage * (bug 5506) Links to files on foreign repositories are now shown consistently as bluelinks e.g. in logs and edit summaries +* (bug 16623) Add missing

tag in Special:LockDB === API changes in 1.14 === diff --git a/includes/specials/SpecialLockdb.php b/includes/specials/SpecialLockdb.php index 04019223f1..5859d5b2c4 100644 --- a/includes/specials/SpecialLockdb.php +++ b/includes/specials/SpecialLockdb.php @@ -109,7 +109,7 @@ END } fwrite( $fp, $this->reason ); fwrite( $fp, "\n

(by " . $wgUser->getName() . " at " . - $wgLang->timeanddate( wfTimestampNow() ) . ")\n" ); + $wgLang->timeanddate( wfTimestampNow() ) . ")

\n" ); fclose( $fp ); $titleObj = SpecialPage::getTitleFor( 'Lockdb' );