removed a debug output when setting up the dropbox for language variants
[lhc/web/wiklou.git] / includes / SpecialDebug.php
index 9bac259..b628128 100644 (file)
@@ -1,7 +1,14 @@
 <?php
-
-function wfSpecialDebug()
-{
+/**
+ * Let developpers receive the full phpinfo output
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+/**
+ *
+ */
+function wfSpecialDebug() {
        global $wgUser, $wgOut;
 
        if ( ! $wgUser->isDeveloper() ) {
@@ -10,4 +17,3 @@ function wfSpecialDebug()
        }
        phpinfo();
 }
-