commit | 82f9b1571370e8d87a0cbd4ff16647a6eccf3c6e | [log] [tgz] |
---|---|---|
author | Phil Sturgeon <email@philsturgeon.co.uk> | Wed Mar 16 22:18:08 2011 +0000 |
committer | Phil Sturgeon <email@philsturgeon.co.uk> | Wed Mar 16 22:18:08 2011 +0000 |
tree | d1521ad2b2303ba959f161c31533136ed9828dfb | |
parent | 35f6491450d8564b26cbfab90aedcd0e592a81d4 [diff] [blame] |
Standardized newlines even more extensively in Input class.
diff --git a/system/core/Input.php b/system/core/Input.php index 6262453..1813135 100644 --- a/system/core/Input.php +++ b/system/core/Input.php
@@ -539,7 +539,7 @@ { 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); } }