From 077eab3a72b91fdb4ba8fa8ab50f35c8f5a64cf3 Mon Sep 17 00:00:00 2001 From: Chase Hutchins Date: Sun, 4 Dec 2011 02:00:39 -0700 Subject: [PATCH] Removed chr() references. The ASCII table does not change from platform to platform. --- laravel/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/core.php b/laravel/core.php index bb37aebb..066cfad6 100644 --- a/laravel/core.php +++ b/laravel/core.php @@ -7,7 +7,7 @@ * basic application, laravel, and public paths. */ define('EXT', '.php'); -define('CRLF', chr(13).chr(10)); +define('CRLF', "\r\n"); define('BLADE_EXT', '.blade.php'); define('APP_PATH', realpath($application).'/'); define('PUBLIC_PATH', realpath($public).'/');