diff options
author | zotlabs <mike@macgirvin.com> | 2018-07-18 17:05:38 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-07-18 17:05:38 -0700 |
commit | 5ce50d0a2e15ae66765a68ba2785a87ecda57f6a (patch) | |
tree | 52c5b31392f6ea036420fc1014e4366075710e99 /Zotlabs/Module/Magic.php | |
parent | 744d548380fb3df074ce8abb78977ddc344744db (diff) | |
download | volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.tar.gz volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.tar.bz2 volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.zip |
mangled urls on redirects
Diffstat (limited to 'Zotlabs/Module/Magic.php')
-rw-r--r-- | Zotlabs/Module/Magic.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Module/Magic.php b/Zotlabs/Module/Magic.php index 25c318f30..e034f1cdf 100644 --- a/Zotlabs/Module/Magic.php +++ b/Zotlabs/Module/Magic.php @@ -14,15 +14,16 @@ class Magic extends \Zotlabs\Web\Controller { logger('mod_magic: args: ' . print_r($_REQUEST,true),LOGGER_DATA); $addr = ((x($_REQUEST,'addr')) ? $_REQUEST['addr'] : ''); + $bdest = ((x($_REQUEST,'bdest')) ? $_REQUEST['bdest'] : ''); $dest = ((x($_REQUEST,'dest')) ? $_REQUEST['dest'] : ''); $test = ((x($_REQUEST,'test')) ? intval($_REQUEST['test']) : 0); $rev = ((x($_REQUEST,'rev')) ? intval($_REQUEST['rev']) : 0); $owa = ((x($_REQUEST,'owa')) ? intval($_REQUEST['owa']) : 0); $delegate = ((x($_REQUEST,'delegate')) ? $_REQUEST['delegate'] : ''); - // Apache(?) appears to perform an htmlentities() operation on this variable - - $dest = html_entity_decode($dest); + + if($bdest) + $dest = hex2bin($bdest); $parsed = parse_url($dest); if(! $parsed) { |