From 953c2947782cdd34a40eafc45f90125696a2fc91 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Nov 2020 08:32:21 +0000 Subject: wrong variable name --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } } -- cgit v1.2.3 From e98804693dfde4a6da075fc9fdf85a0ac12c3658 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 5 Nov 2020 08:37:34 +0000 Subject: update changelog --- CHANGELOG | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 06a1437f8..0c8498488 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 -- cgit v1.2.3