diff options
author | redmatrix <git@macgirvin.com> | 2016-02-08 14:19:49 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-08 14:19:49 -0800 |
commit | 90fd23e0cd1fe3b6d3471411f650b9b276473c68 (patch) | |
tree | c832aa935bcc51b41c2515f0b4b7139b0138931e /mod/_well_known.php | |
parent | d96e985be0b316019fa26340a60c7247baa1090e (diff) | |
download | volse-hubzilla-90fd23e0cd1fe3b6d3471411f650b9b276473c68.tar.gz volse-hubzilla-90fd23e0cd1fe3b6d3471411f650b9b276473c68.tar.bz2 volse-hubzilla-90fd23e0cd1fe3b6d3471411f650b9b276473c68.zip |
try that patch again
Diffstat (limited to 'mod/_well_known.php')
-rw-r--r-- | mod/_well_known.php | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/mod/_well_known.php b/mod/_well_known.php index 47cfe1512..46714deaa 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -49,19 +49,12 @@ function _well_known_init(&$a){ break;
default:
- // look in $WEBROOT/well_known for the requested file in case it is
- // something a site requires and for which we do not have a module
-
- // @fixme - we may need to determine the content-type and stick it in the header
- // for now this can be done with a php script masquerading as the requested file
-
- $wk_file = str_replace('.well-known','well_known',$a->cmd);
- if(file_exists($wk_file)) {
- echo file_get_contents($wk_file);
+ if(file_exists($a->cmd)) {
+ echo file_get_contents($a->cmd);
killme();
}
- elseif(file_exists($wk_file . '.php'))
- require_once($wk_file . '.php');
+ elseif(file_exists($a->cmd . '.php'))
+ require_once($a->cmd . '.php');
break;
}
|