Browse Source

fix for #161 DefaultController.php was not found in include path

Jason Hinkle 12 years ago
parent
commit
8f89da41e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      phreeze/index.php

+ 1 - 1
phreeze/index.php

@@ -24,7 +24,7 @@ $route_map = array(
 		'GET:db' => array('route' => 'Test.DB')
 );
 
-$router = new GenericRouter('./','Test.JSON',$route_map);
+$router = new GenericRouter('/phreeze/','Test.JSON',$route_map);
 
 Dispatcher::Dispatch(
 	$phreezer,