diff options
author | Steffen185 <steffen.weber@gmail.com> | 2014-02-11 17:40:09 +0100 |
---|---|---|
committer | Steffen185 <steffen.weber@gmail.com> | 2014-02-11 17:40:09 +0100 |
commit | 6446d0ac9798f75e4fb4e4fd600585212546a270 (patch) | |
tree | 14cd5bf827e24d99aa6c84eb7bfbbbb35efae037 | |
parent | add515bc7411ef9950f94e3a3bf60379f162a6e0 (diff) |
modcss.inc: Fixed CS
-rw-r--r-- | program/steps/utils/modcss.inc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/program/steps/utils/modcss.inc b/program/steps/utils/modcss.inc index f88ae1a96..749f01829 100644 --- a/program/steps/utils/modcss.inc +++ b/program/steps/utils/modcss.inc @@ -57,12 +57,9 @@ if (ini_get('allow_url_fopen')) { curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($curl); - if ($data !== false) - { + if ($data !== false) { list($headers, $source) = explode("\r\n\r\n", $data, 2); - } - else - { + } else { $headers = false; $source = false; } |