Revision: 805
Author:
intu...@gmail.com
Date: Thu May 13 14:41:09 2010
Log: [No log message]
http://code.google.com/p/switchyard/source/detail?r=805
Modified:
/framework/trunk
/framework/trunk/index.php
=======================================
--- /framework/trunk/index.php Tue Oct 13 06:45:29 2009
+++ /framework/trunk/index.php Thu May 13 14:41:09 2010
@@ -3,16 +3,20 @@
/**
* SwitchYard Master Controller Script
* @author Jeremy Clifton <
j.cl...@4-8-4.com>
- * @version 3.1.10
+ * @version 3.1.11
* @copyright 2005-2009 4-8-4 Software Works, LLC
* @license BSD
*/
//error_reporting(E_ALL);
-error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED);
+if (defined('E_DEPRECATED')) {
+ error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED);
+} else {
+ error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
+}
ini_set('display_errors', true);
-define('SY_VERSION', '3.1.10');
+define('SY_VERSION', '3.1.11');
require 'app/core/bootstrap.php';
SwitchYard::$router = new SwitchYard_Router();
SwitchYard::$router->dispatch();
--
You received this message because you are subscribed to the Google Groups "switchyard-svn" group.
To post to this group, send email to
switchy...@googlegroups.com.
To unsubscribe from this group, send email to
switchyard-sv...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/switchyard-svn?hl=en.