Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2012-01-03 20:23:50 +0400
committerFrank Karlitschek <karlitschek@kde.org>2012-01-03 20:23:50 +0400
commitb8a67929d20d9f1dfa342c29d9017a0751335a1a (patch)
tree9e62b390b4f12847c25447391241a4551165da7e /user_webfinger
parent64ac725ba845ae20454f787b6c2972a21c6f02b7 (diff)
remove error output if symlink already exists. this can happen if a user removed config.php to trigger the setup wizzard
Diffstat (limited to 'user_webfinger')
-rw-r--r--user_webfinger/appinfo/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_webfinger/appinfo/install.php b/user_webfinger/appinfo/install.php
index 079043cd1..f570a3a24 100644
--- a/user_webfinger/appinfo/install.php
+++ b/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');