aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_webfinger/appinfo
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2012-01-03 17:23:50 +0100
committerFrank Karlitschek <karlitschek@kde.org>2012-01-03 17:23:50 +0100
commite0a058c732cc9d1f279cd6604623d9bf7c196744 (patch)
treeb164726ead2c4270fddabfc5dc8849f0b0ac116c /apps/user_webfinger/appinfo
parent868a3b5364af550492794f2093ce0aa07b938c6c (diff)
downloadnextcloud-server-e0a058c732cc9d1f279cd6604623d9bf7c196744.tar.gz
nextcloud-server-e0a058c732cc9d1f279cd6604623d9bf7c196744.zip
remove error output if symlink already exists. this can happen if a user removed config.php to trigger the setup wizzard
Diffstat (limited to 'apps/user_webfinger/appinfo')
-rw-r--r--apps/user_webfinger/appinfo/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_webfinger/appinfo/install.php b/apps/user_webfinger/appinfo/install.php
index 079043cd102..f570a3a249b 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');