Modified:
/framework/branches/SwitchYard-3.0.X/app/core/bootstrap.php
/framework/branches/SwitchYard-3.0.X/index.php
=======================================
--- /framework/branches/SwitchYard-3.0.X/app/core/bootstrap.php Mon Jul 13
12:44:47 2009
+++ /framework/branches/SwitchYard-3.0.X/app/core/bootstrap.php Mon Mar 8
09:38:53 2010
@@ -26,7 +26,7 @@
define('GET', ($_SERVER['REQUEST_METHOD'] == 'GET')?true:false);
// Add to the include dirs
-ini_set('include_path',
ini_get('include_path').PATH_SEPARATOR.SY_ROOTDIR.'/phplib');
+ini_set('include_path',
ini_get('include_path').PATH_SEPARATOR.SY_ROOTDIR.'/app/phplib');
// setup autoload & take care of any other class initialization
spl_autoload_register('switchyard_autoload');
=======================================
--- /framework/branches/SwitchYard-3.0.X/index.php Thu Sep 24 13:31:43 2009
+++ /framework/branches/SwitchYard-3.0.X/index.php Mon Mar 8 09:38:53 2010
@@ -3,12 +3,12 @@
/**
* SwitchYard Master Controller Script
* @author Jeremy Clifton <j.cl...@4-8-4.com>
- * @version 3.0.1
+ * @version 3.0.2
* @copyright 2005-2009 4-8-4 Software Works, LLC
* @license BSD
*/
-define('SY_VERSION', '3.0.1');
+define('SY_VERSION', '3.0.2');
require 'app/core/bootstrap.php';
SwitchYard::$router = new SwitchYard_Router();
SwitchYard::$router->dispatch();