diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-12-18 09:43:06 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-22 19:53:37 +0100 |
commit | 163754a46ccf81bfd22fa53751e875751130aeed (patch) | |
tree | c46ef99e0e845c1047856372781660fd683b53b8 | |
parent | 66b56416b6ad40a682395d26398535508ef79022 (diff) | |
download | volse-hubzilla-163754a46ccf81bfd22fa53751e875751130aeed.tar.gz volse-hubzilla-163754a46ccf81bfd22fa53751e875751130aeed.tar.bz2 volse-hubzilla-163754a46ccf81bfd22fa53751e875751130aeed.zip |
make mod channel deal with b64 encoded mid\s
;
(cherry picked from commit bc6d384ca91bf754c10ead1d787bf1452c20e9d4)
-rw-r--r-- | Zotlabs/Module/Channel.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index f1537ed15..5f221ef20 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -80,6 +80,11 @@ class Channel extends Controller { $mid = ((x($_REQUEST,'mid')) ? $_REQUEST['mid'] : ''); + if(strpos($mid,'b64.') === 0) + $decoded = @base64url_decode(substr($mid,4)); + if($decoded) + $mid = $decoded; + $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); $datequery2 = ((x($_GET,'dbegin') && is_a_date_arg($_GET['dbegin'])) ? notags($_GET['dbegin']) : ''); @@ -331,6 +336,9 @@ class Channel extends Controller { if((! $update) && (! $load)) { + if($decoded) + $mid = 'b64.' . base64url_encode($mid); + // This is ugly, but we can't pass the profile_uid through the session to the ajax updater, // because browser prefetching might change it on us. We have to deliver it with the page. |