diff options
author | friendica <info@friendica.com> | 2014-04-02 14:56:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-02 14:56:20 -0700 |
commit | 0a097b833750ad8941dba03e6821c13facebd597 (patch) | |
tree | e4bceac1bbe231c855e13c269fa6399c6bcf8f2e /mod/_well_known.php | |
parent | 60a9b3a6998154db0381a24d10e95558ad10642c (diff) | |
download | volse-hubzilla-0a097b833750ad8941dba03e6821c13facebd597.tar.gz volse-hubzilla-0a097b833750ad8941dba03e6821c13facebd597.tar.bz2 volse-hubzilla-0a097b833750ad8941dba03e6821c13facebd597.zip |
snakebite: bring back some of the legacy XML discovery interfaces, update as required.
Diffstat (limited to 'mod/_well_known.php')
-rw-r--r-- | mod/_well_known.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mod/_well_known.php b/mod/_well_known.php index c5a38078a..885ff9b50 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -19,6 +19,13 @@ function _well_known_init(&$a){ require_once('mod/wfinger.php');
wfinger_init($a);
break;
+ case 'host-meta':
+ $a->argc -= 1;
+ array_shift($a->argv);
+ $a->argv[0] = 'hostxrd';
+ require_once('mod/hostxrd.php');
+ hostxrd_init($a);
+ break;
default:
break;
|