From a7cb16aab1f100995a417e74111371835622478d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Mon, 4 Nov 2013 21:23:10 +0100
Subject: [PATCH] use ===

---
 apps/files_sharing/lib/cache.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php
index 3a8e703740..0f57707f14 100644
--- a/apps/files_sharing/lib/cache.php
+++ b/apps/files_sharing/lib/cache.php
@@ -103,7 +103,7 @@ class Shared_Cache extends Cache {
 			$data['encrypted'] = (bool)$data['encrypted'];
 			$data['mimetype'] = $this->getMimetype($data['mimetype']);
 			$data['mimepart'] = $this->getMimetype($data['mimepart']);
-			if ($data['storage_mtime'] == 0) {
+			if ($data['storage_mtime'] === 0) {
 				$data['storage_mtime'] = $data['mtime'];
 			}
 			return $data;
-- 
GitLab