Browse Source

Removed chr() references. The ASCII table does not change from platform to platform.

Chase Hutchins 13 years ago
parent
commit
077eab3a72
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/core.php

+ 1 - 1
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).'/');