Merge branch 'master' of gitorious.org:owncloud/owncloud
commit
8b3c4e9a52
@ -1,2 +1,3 @@
|
||||
.contacts_details_left {text-align:right;vertical-align:top;padding:2px;}
|
||||
.contacts_details_right {text-align:left;vertical-align:top;padding:2px;}
|
||||
#contacts_deletecard {position:absolute;top:15px;right:0;}
|
||||
|
||||
@ -1,11 +0,0 @@
|
||||
<?php
|
||||
$ownCloudBaseUri = substr($_SERVER['REQUEST_URI'],0, -(strlen('/apps/user_webfinger/activate.php')));
|
||||
$thisAppDir = __DIR__;
|
||||
$appsDir = dirname($thisAppDir);
|
||||
$ownCloudDir = dirname($appsDir);
|
||||
try{
|
||||
symlink($thisAppDir, $ownCloudDir.'/.well-known');
|
||||
echo "Webfinger should now work.\n";
|
||||
} catch(Exception $e) {
|
||||
echo "Please create a file called '.well-known in the ownCloud root, give the web server user permission to change it, and retry.\n";
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
$appInfoDir = __DIR__;
|
||||
$thisAppDir = dirname($appInfoDir);
|
||||
$appsDir = dirname($thisAppDir);
|
||||
$ownCloudDir = dirname($appsDir);
|
||||
symlink($thisAppDir, $ownCloudDir.'/.well-known');
|
||||
Loading…
Reference in New Issue