From dec9e85eaebaeaca92fbcb8bc581e6756b1c608f Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 03 Aug 2009 07:33:53 -0400
Subject: [PATCH] - Fix rcube_mdb2.php: call to setCharset not implemented in mssql driver (#1486019)

---
 bin/modcss.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/modcss.php b/bin/modcss.php
index 3ee1e23..a4bd084 100644
--- a/bin/modcss.php
+++ b/bin/modcss.php
@@ -63,14 +63,14 @@
     if ($header
         && preg_match('/^HTTP\/1\..\s+(\d+)/', $line, $regs)
         && intval($regs[1]) != 200) {
-	break;
+        break;
     } else if (empty($line) && $header) {
         $header = false;
     } else if (!$header) {
         $source .= "$line\n";
     }
-    fclose($fp);
 }
+fclose($fp);
 
 if (!empty($source)) {
     header('Content-Type: text/css');

--
Gitblit v1.9.1