diff options
author | Mario <mario@mariovavti.com> | 2021-05-11 11:57:13 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-11 11:57:13 +0000 |
commit | 0933925a2b122179fd728d13c124da63f527a877 (patch) | |
tree | 4735ee5d48e6d0bd46e70926e97a8bab6c736063 | |
parent | 43008aa42b10d9aa62f6a4e5becaa89233e1a243 (diff) | |
parent | e92929fce4fab86d7710fd0478bad973e30176fc (diff) | |
download | volse-hubzilla-0933925a2b122179fd728d13c124da63f527a877.tar.gz volse-hubzilla-0933925a2b122179fd728d13c124da63f527a877.tar.bz2 volse-hubzilla-0933925a2b122179fd728d13c124da63f527a877.zip |
Merge branch 'dev' into 5.6RC
-rw-r--r-- | CHANGELOG | 34 | ||||
-rw-r--r-- | include/channel.php | 2 |
2 files changed, 35 insertions, 1 deletions
@@ -1,3 +1,37 @@ +Hubzilla 5.6 (2021-05-11) + - Improve postgres hubloc queries + - Implement automatic duplicate singleton hubloc removal + - Send author id, id_sig and key fields along with author/owner + - Implement custom redis session backend + - Improved registration workflow + - Complete rewrite of the registration backend with many new features + - Complete rewrite of the invite app + - Update Spanish, Russian and Polish translations + - Improved PHP8 compatibiliy (work in progress) + + Bugfixes + - Fix manual fetching of non-ascii domains + - Fix revision not compared when importing items + - Fix events not transformed to UTC when importing calendar + - Fix timezone issue in mod cal + - Fix profile photos not revalidated + - Fix regression in caldav/carddav discovery + - Fix caldav/carddav sync on remote access + - Fix info and notice messages not bootstraped when using SSE + - Fix URL including an @ treated like a webbie + - Fix cover photo image issues on some mobile devices + + Addons + - Diaspora: improve performance when delivering public items + - Diaspora: make sure to not process same contact more than once + - Pubcrawl: make sure to not process same contact more than once + - Pubcrawl: do not relay Like and Dislike activity + - Pubcrawl: deprecate as_follow() in favour of core Activity::follow() + - Pubcrawl: improved compatibility with mobilizon and xwiki + - Pubcrawl: do not process follow/unfollw thread in as_create_note() + - Diaspora: do not relay comments/likes of strangers if the thread-owner is local and does not allow comments/likes by strangers in the diaspora app settings + + Hubzilla 5.4.3 (2021-04-20) - Fix regression in mod notifications (only the last was visible) - Set Permissions-Policy: interest-cohort=() header by default diff --git a/include/channel.php b/include/channel.php index 31c7c407f..bc9f686e7 100644 --- a/include/channel.php +++ b/include/channel.php @@ -2593,7 +2593,7 @@ function channelx_by_n($id) { } $r = q("SELECT * FROM channel LEFT JOIN xchan ON channel_hash = xchan_hash WHERE channel_id = %d AND channel_removed = 0 LIMIT 1", - dbesc($id) + intval($id) ); return(($r) ? $r[0] : false); |