From 82f9b1571370e8d87a0cbd4ff16647a6eccf3c6e Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Wed, 16 Mar 2011 22:18:08 +0000 Subject: Standardized newlines even more extensively in Input class. --- system/core/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/core/Input.php') diff --git a/system/core/Input.php b/system/core/Input.php index 626245390..18131350f 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -539,7 +539,7 @@ class CI_Input { { if (strpos($str, "\r") !== FALSE) { - $str = str_replace(array("\r\n", "\r"), PHP_EOL, $str); + $str = str_replace(array("\r\n", "\r", "\r\n\n"), PHP_EOL, $str); } } -- cgit v1.2.3-24-g4f1b