wiki.techinc.nl/extensions/MakeDBError.php

26 lines
442 B
PHP
Raw Normal View History

2004-09-26 06:45:30 +00:00
<?php
$wgExtensionFunctions[] = "wfMakeDBErrorExt";
function wfMakeDBErrorExt() {
require_once( "includes/SpecialPage.php" );
2004-09-26 06:45:30 +00:00
class MakeDBErrorPage extends UnlistedSpecialPage
{
function MakeDBErrorPage() {
UnlistedSpecialPage::UnlistedSpecialPage("MakeDBError");
}
function execute( $par ) {
$this->setHeaders();
wfQuery( "test", DB_READ );
}
}
SpecialPage::addPage( new MakeDBErrorPage );
} # End of extension function
?>