silverstripe-framework/dev/InstallerTest.php
Fred Condo d370423825 Clean up trailing ?> per coding standard
All sapphire but the lang directory
2012-02-12 12:40:16 -08:00

18 lines
285 B
PHP

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