From c60e15a682a1de0d365dc60168758cfce560ae55 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Mon, 4 Mar 2013 21:36:07 +0100 Subject: [PATCH] Correct Line Breaks --- src/utils/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Config.php b/src/utils/Config.php index 0b026fdb9..d23a7696b 100644 --- a/src/utils/Config.php +++ b/src/utils/Config.php @@ -182,7 +182,7 @@ class Config{ } private function parseList($content){ - foreach(explode("\n", trim(str_replace("\r", "", $content))) as $v){ + foreach(explode("\n", trim(str_replace("\r\n", "\n", $content))) as $v){ $v = trim($v); if($v == ""){ continue;