diff options
author | Michiel@unhosted <michiel@unhosted.org> | 2011-10-09 17:24:18 +0200 |
---|---|---|
committer | Michiel@unhosted <michiel@unhosted.org> | 2011-10-09 17:24:18 +0200 |
commit | e2468c4343c9b0939916bb20acae57aba1e62f95 (patch) | |
tree | 2f0ff768e4b052867947c5caa8946999295acd83 | |
parent | 6e62911a4ebeb16203cf88cd9b62da37b519ed62 (diff) | |
download | nextcloud-server-e2468c4343c9b0939916bb20acae57aba1e62f95.tar.gz nextcloud-server-e2468c4343c9b0939916bb20acae57aba1e62f95.zip |
fix webfinger install script
-rw-r--r-- | apps/user_webfinger/appinfo/install.php | 3 |
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'); |