aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichiel@unhosted <michiel@unhosted.org>2011-10-09 17:24:18 +0200
committerMichiel@unhosted <michiel@unhosted.org>2011-10-09 17:24:18 +0200
commite2468c4343c9b0939916bb20acae57aba1e62f95 (patch)
tree2f0ff768e4b052867947c5caa8946999295acd83
parent6e62911a4ebeb16203cf88cd9b62da37b519ed62 (diff)
downloadnextcloud-server-e2468c4343c9b0939916bb20acae57aba1e62f95.tar.gz
nextcloud-server-e2468c4343c9b0939916bb20acae57aba1e62f95.zip
fix webfinger install script
-rw-r--r--apps/user_webfinger/appinfo/install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_webfinger/appinfo/install.php b/apps/user_webfinger/appinfo/install.php
index d23ba535394..079043cd102 100644
--- a/apps/user_webfinger/appinfo/install.php
+++ b/apps/user_webfinger/appinfo/install.php
@@ -1,5 +1,6 @@
<?php
-$thisAppDir = __DIR__;
+$appInfoDir = __DIR__;
+$thisAppDir = dirname($appInfoDir);
$appsDir = dirname($thisAppDir);
$ownCloudDir = dirname($appsDir);
symlink($thisAppDir, $ownCloudDir.'/.well-known');