From 6446d0ac9798f75e4fb4e4fd600585212546a270 Mon Sep 17 00:00:00 2001 From: Steffen185 <steffen.weber@gmail.com> Date: Tue, 11 Feb 2014 11:40:09 -0500 Subject: [PATCH] modcss.inc: Fixed CS --- 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 f88ae1a..749f018 100644 --- a/program/steps/utils/modcss.inc +++ b/program/steps/utils/modcss.inc @@ -57,12 +57,9 @@ 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; } -- Gitblit v1.9.1