aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-23 16:33:34 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-23 16:33:34 -0700
commit89c15cc092048af2180452cbba24df273620aaba (patch)
tree4d54d86c6b28918463f10dcf609f211b892b9ec3 /boot.php
parent938247427da4f6df421eadb3fe6d1718803bb201 (diff)
downloadvolse-hubzilla-89c15cc092048af2180452cbba24df273620aaba.tar.gz
volse-hubzilla-89c15cc092048af2180452cbba24df273620aaba.tar.bz2
volse-hubzilla-89c15cc092048af2180452cbba24df273620aaba.zip
added webfinger support
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index b36a255eb..8d2628845 100644
--- a/boot.php
+++ b/boot.php
@@ -73,6 +73,10 @@ class App {
else {
$this->module = 'home';
}
+
+ if($this->cmd == '.well-known/host-meta')
+ require_once('include/hostxrd.php');
+
$this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
$this->pager['itemspage'] = 50;
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];