10 lines
310 B
PHP
10 lines
310 B
PHP
<?php
|
|
/**
|
|
* @copyright 2007-2008 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
*/
|
|
$_SESSION['errorMessages'][] = new Exception('noJavascript');
|
|
$template = new Template();
|
|
echo $template->render();
|