diff options
author | friendica <info@friendica.com> | 2013-12-27 21:19:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-27 21:19:23 -0800 |
commit | 121ee48963f7da0aec45b94163d68f23a36c7744 (patch) | |
tree | a3589687e2716ec0abd52859f4447e9f91291177 /mod/sslify.php | |
parent | c59688553c6f681fe7a11479b69dce8c3cd308dc (diff) | |
download | volse-hubzilla-121ee48963f7da0aec45b94163d68f23a36c7744.tar.gz volse-hubzilla-121ee48963f7da0aec45b94163d68f23a36c7744.tar.bz2 volse-hubzilla-121ee48963f7da0aec45b94163d68f23a36c7744.zip |
sslify - remove the redirect fallback - as it gets called occasionally and creates mixed content exceptions. Let's see how we go without it. Also a doc update.
Diffstat (limited to 'mod/sslify.php')
-rw-r--r-- | mod/sslify.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/sslify.php b/mod/sslify.php index 84afec6dc..ed06d87c1 100644 --- a/mod/sslify.php +++ b/mod/sslify.php @@ -15,7 +15,10 @@ function sslify_init(&$a) { echo $x['body']; killme(); } - + killme(); + // for some reason when this fallback is in place - it gets triggered + // often, (creating mixed content exceptions) even though there is + // nothing obvious missing on the page when we bypass it. goaway($_REQUEST['url']); } |