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 /include/network.php | |
parent | d4e53bb86fbeff0dd0b4f069f4fa07993ddf9e65 (diff) | |
download | volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.tar.gz volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.tar.bz2 volse-hubzilla-4ff89a58625e647ee74087dfab79ac6dd76cbe6c.zip |
drop salmon until we improve performance
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |