From 39602ede373ef6376d05b5cb19fe571e27b5fba9 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 25 Apr 2022 22:53:04 +0200 Subject: version bump --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index ee1cd7990..06d498be7 100644 --- a/boot.php +++ b/boot.php @@ -60,7 +60,7 @@ require_once('include/bbcode.php'); require_once('include/items.php'); define('PLATFORM_NAME', 'hubzilla'); -define('STD_VERSION', '7.3'); +define('STD_VERSION', '7.3.1'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1252); -- cgit v1.2.3 From 01e82090b2600b99cab1311f1f355c8a3279c333 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 26 Apr 2022 11:07:23 +0200 Subject: hubloc in AS has been moved from data to meta a while ago --- Zotlabs/Lib/Libzot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 2ed18d10b..379b329c7 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1292,7 +1292,7 @@ class Libzot { } } - if ($AS->data['hubloc']) { + if ($AS->meta['hubloc']) { $arr['item_verified'] = true; } @@ -2010,7 +2010,7 @@ class Libzot { $arr['owner_xchan'] = $a['signature']['signer']; } - if ($AS->data['hubloc'] || $arr['author_xchan'] === $arr['owner_xchan']) { + if ($AS->meta['hubloc'] || $arr['author_xchan'] === $arr['owner_xchan']) { $arr['item_verified'] = true; } -- cgit v1.2.3