From 17af1ba893d0b60f8be1d15391d4deb89f4666f4 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 31 Mar 2012 00:03:21 +0200 Subject: [PATCH] Silence error for missing appinfo info file --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index 7d5e8fa91c..1c81fbd424 100755 --- a/lib/app.php +++ b/lib/app.php @@ -319,7 +319,7 @@ class OC_App{ $file=OC::$APPSROOT.'/apps/'.$appid.'/appinfo/info.xml'; } $data=array(); - $content=file_get_contents($file); + $content=@file_get_contents($file); if(!$content){ return; }