Merge pull request #451 from fabrixxm/master

fixes and tweaks
This commit is contained in:
friendica 2012-08-31 01:26:03 -07:00
commit 2ace7d6646
6 changed files with 31 additions and 16 deletions

14
mod/_well_known.php Normal file
View file

@ -0,0 +1,14 @@
<?php
require_once("hostxrd.php");
function _well_known_init(&$a){
if ($a->argc > 1) {
switch($a->argv[1]) {
case "host-meta":
hostxrd_init($a);
break;
}
}
http_status_exit(404);
killme();
}