From 1d63654662c167c46b78efd451d4345929ae9e40 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 15 Dec 2016 18:06:49 -0800 Subject: there are occasional sites which use different capitalisation of Content-Type; which is rare, but completely legal. --- Zotlabs/Module/Sslify.php | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'Zotlabs/Module/Sslify.php') diff --git a/Zotlabs/Module/Sslify.php b/Zotlabs/Module/Sslify.php index db73f85e0..2891f3691 100644 --- a/Zotlabs/Module/Sslify.php +++ b/Zotlabs/Module/Sslify.php @@ -10,21 +10,16 @@ class Sslify extends \Zotlabs\Web\Controller { $h = explode("\n",$x['header']); foreach ($h as $l) { list($k,$v) = array_map("trim", explode(":", trim($l), 2)); - $hdrs[$k] = $v; + $hdrs[strtolower($k)] = $v; } - if (array_key_exists('Content-Type', $hdrs)) - $type = $hdrs['Content-Type']; - - header('Content-Type: ' . $type); + if (array_key_exists('content-type', $hdrs)) { + $type = $hdrs['content-type']; + header('Content-Type: ' . $type); + } + 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']); - } - - + } } -- cgit v1.2.3