From ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3 Mon Sep 17 00:00:00 2001
From: Bart Visscher <bartv@thisnet.nl>
Date: Mon, 17 Sep 2012 17:27:37 +0200
Subject: [PATCH] Fix return statement

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

diff --git a/lib/app.php b/lib/app.php
index 28f1f16eba..49e644c1f7 100755
--- a/lib/app.php
+++ b/lib/app.php
@@ -640,7 +640,7 @@ class OC_App{
 			}
 		}else{
 			OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR);
-			false;
+			return false;
 		}
 	}
 }
-- 
GitLab