aboutsummaryrefslogtreecommitdiffstats
path: root/wiki.phtml
diff options
context:
space:
mode:
authorTim Starling <tstarling@users.mediawiki.org>2004-02-14 12:37:25 +0000
committerTim Starling <tstarling@users.mediawiki.org>2004-02-14 12:37:25 +0000
commite2f98922df92eedf50aa5f93f2f4327d436a1c71 (patch)
treea0bc8c82ad47c9748f2101e2c71821a99b7850ea /wiki.phtml
parentca6782aefa6f18b0c5a1369d863c24dbe4ed0f70 (diff)
downloadmediawikicore-e2f98922df92eedf50aa5f93f2f4327d436a1c71.tar.gz
mediawikicore-e2f98922df92eedf50aa5f93f2f4327d436a1c71.zip
Two blocking features: IP range blocks, and expiry times configurable block-by-block.
Possible issue: uses strtotime(), which is very handy but in English
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2473
Diffstat (limited to 'wiki.phtml')
-rw-r--r--wiki.phtml13
1 files changed, 0 insertions, 13 deletions
diff --git a/wiki.phtml b/wiki.phtml
index 35fdcd98b472..4093459b0938 100644
--- a/wiki.phtml
+++ b/wiki.phtml
@@ -16,19 +16,6 @@ include_once( "Setup.php" );
wfProfileIn( "main-misc-setup" );
OutputPage::setEncodings(); # Not really used yet
-# Useful debug output
-if ( function_exists( "getallheaders" ) ) {
- wfDebug( "\nStart request\n" );
- wfDebug( "$REQUEST_METHOD $REQUEST_URI\n" );
- $headers = getallheaders();
- foreach ($headers as $name => $value) {
- wfDebug( "$name: $value\n" );
- }
- wfDebug( "\n" );
-} else {
- wfDebug( "$REQUEST_METHOD $REQUEST_URI\n" );
-}
-
# Query string fields
#
global $action, $title, $search, $go, $target, $printable;