diff options
author | Habeas Codice <habeascodice@federated.social> | 2014-11-19 21:10:19 -0800 |
---|---|---|
committer | Habeas Codice <habeascodice@federated.social> | 2014-11-19 21:10:19 -0800 |
commit | 92d0a9404ff92da23b558f9a73a3150f97b6a08e (patch) | |
tree | b28c83aede89ce130b7eeee96500d8434acd24b9 /mod | |
parent | 6413395a76d57960708f17016f04a682b3643aa7 (diff) | |
download | volse-hubzilla-92d0a9404ff92da23b558f9a73a3150f97b6a08e.tar.gz volse-hubzilla-92d0a9404ff92da23b558f9a73a3150f97b6a08e.tar.bz2 volse-hubzilla-92d0a9404ff92da23b558f9a73a3150f97b6a08e.zip |
Should fix issue #704
submitter please verify and close
Diffstat (limited to 'mod')
-rw-r--r-- | mod/sslify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/sslify.php b/mod/sslify.php index ed06d87c1..f37a8e23e 100644 --- a/mod/sslify.php +++ b/mod/sslify.php @@ -3,7 +3,7 @@ function sslify_init(&$a) { $x = z_fetch_url($_REQUEST['url']); if($x['success']) { - $h = explode("\n",$x['headers']); + $h = explode("\n",$x['header']); foreach ($h as $l) { list($k,$v) = array_map("trim", explode(":", trim($l), 2)); $hdrs[$k] = $v; |