From 0fb73ec49d4adb3272b2939f10498ca446f7ffb6 Mon Sep 17 00:00:00 2001
From: Georg Ehrke <dev@georgswebsite.de>
Date: Thu, 12 Jan 2012 21:54:58 +0100
Subject: [PATCH] fix previous change

---
 lib/filestorage/local.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 1261bd3aa8..b8a0563c13 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -165,7 +165,7 @@ class OC_Filestorage_Local extends OC_Filestorage{
 			}
 			if ($mimeType=='application/octet-stream') {
 				// Fallback solution: (try to guess the type by the file extension
-				if(!self::$mimetypes || self::$mimetypes == include('mimetypes.list.php')){
+				if(!self::$mimetypes || self::$mimetypes != include('mimetypes.list.php')){
 					self::$mimetypes=include('mimetypes.list.php');
 				}
 				$extention=strtolower(strrchr(basename($fspath), "."));
-- 
GitLab