silverstripe-framework/dev/InstallerTest.php
Mark Rickerby f606f92be6 renaming 'testing' to 'dev' after discussion with Sam
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@55798 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-06-06 03:13:21 +00:00

21 lines
280 B
PHP

<?php
/**
* @package sapphire
* @subpackage misc
*/
/**
* Simple controller that the installer uses to test that URL rewriting is working.
* @package sapphire
* @subpackage misc
*/
class InstallerTest extends Controller {
function testrewrite() {
echo "OK";
}
}
?>