From e0a058c732cc9d1f279cd6604623d9bf7c196744 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 3 Jan 2012 17:23:50 +0100 Subject: [PATCH] remove error output if symlink already exists. this can happen if a user removed config.php to trigger the setup wizzard --- apps/user_webfinger/appinfo/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_webfinger/appinfo/install.php b/apps/user_webfinger/appinfo/install.php index 079043cd10..f570a3a249 100644 --- a/apps/user_webfinger/appinfo/install.php +++ b/apps/user_webfinger/appinfo/install.php @@ -3,4 +3,4 @@ $appInfoDir = __DIR__; $thisAppDir = dirname($appInfoDir); $appsDir = dirname($thisAppDir); $ownCloudDir = dirname($appsDir); -symlink($thisAppDir, $ownCloudDir.'/.well-known'); +@symlink($thisAppDir, $ownCloudDir.'/.well-known');