diff options
author | Friendika <info@friendika.com> | 2011-02-21 20:19:33 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-21 20:19:33 -0800 |
commit | 5f2f64406407839d0a9d906e0ad165067d90d130 (patch) | |
tree | 08734b4cd12d7c66756bcde3d5bf9cf1ad32c67e /boot.php | |
parent | d124c67322b8f79f18152d6f24394b3a38b4e0f5 (diff) | |
download | volse-hubzilla-5f2f64406407839d0a9d906e0ad165067d90d130.tar.gz volse-hubzilla-5f2f64406407839d0a9d906e0ad165067d90d130.tar.bz2 volse-hubzilla-5f2f64406407839d0a9d906e0ad165067d90d130.zip |
resolve file inclusion conflicts w/ multiple plugins, improve the typo checker
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -267,9 +267,11 @@ class App { * Just spit out the contents and exit. */ - if($this->cmd === '.well-known/host-meta') + if($this->cmd === '.well-known/host-meta') { require_once('include/hostxrd.php'); - + hostxrd($this->hostname); + // NOTREACHED + } /** * See if there is any page number information, and initialise @@ -410,6 +412,7 @@ function x($s,$k = NULL) { if(! function_exists('system_unavailable')) { function system_unavailable() { include('system_unavailable.php'); + system_down(); killme(); }} |