Compare commits

...

3 Commits

Author SHA1 Message Date
Mario Vavti
8c182c9d68 version 10.2.3 2025-04-11 21:30:03 +02:00
Mario
384eea79dc changelog
(cherry picked from commit 6068c0e8c2)

Co-authored-by: Mario <mario@mariovavti.com>
2025-04-11 19:28:46 +00:00
Mario Vavti
f8bc755c20 fix bougus merge to master 2025-04-11 21:13:40 +02:00
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
Hubzilla 10.2.3 (2025-04-11)
- Fix bogus merge from 10.2.2 release
Hubzilla 10.2.2 (2025-04-11)
- Cleanup deprecated forum queries, improved performance
- Fix zot6 handler returning success allthough Libzot::fetch() did not return anything useful

View File

@@ -607,7 +607,8 @@ class Sse_bs extends Controller {
where uid = %d and (owner_xchan = '%s' or author_xchan = '%s') and author_xchan != '%s' and verb != 'Announce' and item_unseen = 1 $sql_extra $item_normal",
intval(self::$uid),
dbesc($forums[$x]['xchan_hash']),
dbesc($forums[$x]['xchan_hash'])
dbesc($forums[$x]['xchan_hash']),
dbesc(self::$ob_hash)
);
if($r[0]['total']) {

View File

@@ -66,7 +66,7 @@ require_once('include/security.php');
define('PLATFORM_NAME', 'hubzilla');
define('STD_VERSION', '10.2.2');
define('STD_VERSION', '10.2.3');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1263);