1 <?php
2 /**
3 * Simple controller that the installer uses to test that URL rewriting is working.
4 * @package sapphire
5 * @subpackage testing
6 */
7 class InstallerTest extends Controller {
8
9 function testrewrite() {
10 echo "OK";
11 }
12 }
13
14 ?>