111
112 // Set the handler for shutdown to catch Parse errors
113 register_shutdown_function(array('Pancake_Exceptions', 'shutdown_handler'));
114
115 // This is a hack to set the default timezone if it isn't set. Not setting it causes issues.
116 date_default_timezone_set(date_default_timezone_get());
117 }
118
119 /**
120 * Debug Path
121 * This makes nicer looking paths for the error output.
-
{PHP internal call} » Pancake_Exceptions::error_handler()
-
APPPATH/core/Pancake_Exceptions.php [ 116 ] » date_default_timezone_get()
111 112 // Set the handler for shutdown to catch Parse errors 113 register_shutdown_function(array('Pancake_Exceptions', 'shutdown_handler')); 114 115 // This is a hack to set the default timezone if it isn't set. Not setting it causes issues. 116 date_default_timezone_set(date_default_timezone_get()); 117 } 118 119 /** 120 * Debug Path 121 * This makes nicer looking paths for the error output. -
APPPATH/pancake_index.php [ 242 ] » Pancake_Exceptions->__construct()
237 test_mysqli(); 238 239 # Require exceptions before autoloading, in order to report deprecation notices while autoloading. 240 require_once BASEPATH . '/core/Exceptions.php'; 241 require_once APPPATH . 'core/Pancake_Exceptions.php'; 242 $e = new Pancake_Exceptions(); 243 244 # This file is not included because it contains 5.3+ code that would prevent us 245 # from displaying the "unsupported PHP" error at the top of this file. 246 require_once dirname(__FILE__) . '/../vendor/autoload.php'; 247 -
FCPATH/index.php [ 16 ] » require_once(arguments)
0string(64)
11 * @license http://pancakeapp.com/license 12 * @link http://pancakeapp.com 13 */ 14 15 $index_file = __FILE__; 16 require_once 'system/pancake/pancake_index.php';