From: Brion Vibber Date: Wed, 17 Aug 2005 08:05:32 +0000 (+0000) Subject: * Include software-visible client IP address in Special:Version comment X-Git-Tag: 1.6.0~1921 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22sites_tous%22%29%20.%20%22?a=commitdiff_plain;h=4ddf1bdcbe23d9a29f179f39e9bfa6b2648360d8;p=lhc%2Fweb%2Fwiklou.git * Include software-visible client IP address in Special:Version comment as a proxy debugging aid committing live hack --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1e743dc8e9..b4e03d40f5 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -23,6 +23,9 @@ Misc work going on..... * Partial support for Basque language (from wikipedia and meta) * (bug 3116) Division by zero on [[Image:Foo.png|123x123px|]] * Fix display of read-only lockfile message +* Update all stats fields on recount.sql +* Include software-visible client IP address in Special:Version comment + as a proxy debugging aid === Caveats === diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index a525d35ef0..9b5e150383 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -60,6 +60,11 @@ or [http://www.gnu.org/copyleft/gpl.html read it online] } } $wgOut->addWikiText( $out ); + + global $wgIP; + $wgOut->addHTML( '\n" ); } function formatExtensionCredits( $name, $author, $url = null, $version = null ) {