diff options
author | Mario <mario@mariovavti.com> | 2020-11-05 08:41:01 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-05 08:41:01 +0000 |
commit | 7e40eeb52a690a4c93c29c714d61950e3ba8870d (patch) | |
tree | 7ff53d5296e1b98d1159d1d8044a564d42e321bc | |
parent | 20d2811cd5d0e2f518169a7625c8df3734f7137c (diff) | |
parent | e98804693dfde4a6da075fc9fdf85a0ac12c3658 (diff) | |
download | volse-hubzilla-7e40eeb52a690a4c93c29c714d61950e3ba8870d.tar.gz volse-hubzilla-7e40eeb52a690a4c93c29c714d61950e3ba8870d.tar.bz2 volse-hubzilla-7e40eeb52a690a4c93c29c714d61950e3ba8870d.zip |
Merge branch 'dev' into 5.0RC
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | include/text.php | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ -Hubzilla 5.0 (????-??-??) +Hubzilla 5.0 (2020-11-05) - Remove unmaintained and deprecated schemas - Deprecate HTML5_Parser library - Implement results caching for public tag and profile categories fetching @@ -55,6 +55,8 @@ Hubzilla 5.0 (????-??-??) - Fix once cached embedded content is used and stored forever Addons + - Pubcrawl: fix issue where http signatures were not verified + - Pubcrawl: fix issue where private keys were lost from storage - Pubcrawl: add host to signed headers (required by mastodon 3.2.1) - Diaspora: remove relay@relay.iliketoat.net as default relay (it does not exist anymore) - Diaspora: provide UI for admin to configure relay diff --git a/include/text.php b/include/text.php index a300ccf58..58cde7838 100644 --- a/include/text.php +++ b/include/text.php @@ -672,7 +672,7 @@ function bt_syslog($msg, $priority = LOG_INFO) { for($x = 1; $x < count($stack); $x ++) { $s = 'stack: ' . basename($stack[$x]['file']) . ':' . $stack[$x]['line'] . ':' . $stack[$x]['function'] . '()'; openlog("bt-log", LOG_PID | LOG_PERROR, LOG_LOCAL0); - syslog($priority, $msg); + syslog($priority, $s); closelog(); } } |