Commit a2aa7418 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #199 from syntaqx/master

Removed chr() references during bootstrap. 
parents 4ec3f397 077eab3a
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* basic application, laravel, and public paths. * basic application, laravel, and public paths.
*/ */
define('EXT', '.php'); define('EXT', '.php');
define('CRLF', chr(13).chr(10)); define('CRLF', "\r\n");
define('BLADE_EXT', '.blade.php'); define('BLADE_EXT', '.blade.php');
define('APP_PATH', realpath($application).'/'); define('APP_PATH', realpath($application).'/');
define('PUBLIC_PATH', realpath($public).'/'); define('PUBLIC_PATH', realpath($public).'/');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment