diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-12 20:24:57 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-12 20:24:57 -0700 |
commit | 4ff89a58625e647ee74087dfab79ac6dd76cbe6c (patch) | |
tree | e42baddb330e80c7c66d2da8dfb7231140efc9d0 | |
parent | d4e53bb86fbeff0dd0b4f069f4fa07993ddf9e65 (diff) | |
download | volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.tar.gz volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.tar.bz2 volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.zip |
drop salmon until we improve performance
-rw-r--r-- | Zotlabs/Lib/LDSignatures.php | 3 | ||||
-rw-r--r-- | include/network.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Lib/LDSignatures.php b/Zotlabs/Lib/LDSignatures.php index 7d468782a..fa2758044 100644 --- a/Zotlabs/Lib/LDSignatures.php +++ b/Zotlabs/Lib/LDSignatures.php @@ -16,7 +16,8 @@ class LDSignatures { } static function dopplesign(&$data,$channel) { - $data['magicEnv'] = self::salmon_sign($data,$channel); + // remove for the time being - performance issues + // $data['magicEnv'] = self::salmon_sign($data,$channel); return self::sign($data,$channel); } diff --git a/include/network.php b/include/network.php index 96cea4b6f..da1afc3ac 100644 --- a/include/network.php +++ b/include/network.php @@ -411,7 +411,7 @@ function http_status($val, $msg = '') { if ($val >= 200 && $val < 300) $msg = (($msg) ? $msg : 'OK'); - logger('' . $val . ' ' . $msg); + logger(\App::$query_string . ':' . $val . ' ' . $msg); header($_SERVER['SERVER_PROTOCOL'] . ' ' . $val . ' ' . $msg); } |