Index: trunk/phase3/includes/SpecialVersion.php |
— | — | @@ -33,7 +33,6 @@ |
34 | 34 | $this->extensionCredits() . |
35 | 35 | $this->wgHooks() |
36 | 36 | ); |
37 | | - $wgOut->addHtml( self::getLanguageInfo() ); |
38 | 37 | $wgOut->addHTML( $this->IPInfo() ); |
39 | 38 | $wgOut->addHTML( '</div>' ); |
40 | 39 | } |
— | — | @@ -291,18 +290,6 @@ |
292 | 291 | return intval( $content[3] ); |
293 | 292 | } |
294 | 293 | } |
295 | | - |
296 | | - /** |
297 | | - * Get the content language name and code, for debugging/support purposes |
298 | | - * |
299 | | - * @return string |
300 | | - */ |
301 | | - private static function getLanguageInfo() { |
302 | | - global $wgContLang; |
303 | | - $code = $wgContLang->getCode(); |
304 | | - $name = Language::getLanguageName( $code ); |
305 | | - return '<!-- ' . htmlspecialchars( "Content Language: {$name} [{$code}]" ) . ' -->'; |
306 | | - } |
307 | 294 | |
308 | 295 | /**#@-*/ |
309 | 296 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -470,8 +470,6 @@ |
471 | 471 | * (bug 8417) Handle EXIF unknown dates |
472 | 472 | * (bug 8372) Return nothing on empty <math> tags. |
473 | 473 | * New maintenance script to show the cached statistics : showStats.php. |
474 | | -* Emit content language information in a comment in Special:Version, for |
475 | | - debugging/support purposes |
476 | 474 | * New special page to list available interwikis [[Special:Listinterwikis]] |
477 | 475 | * Count deleted edits when regenerating total edits in maintenance/initStats.php |
478 | 476 | |