From 712d6aa2e2c4e582bacccc7d539f25631936b58b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 24 Jul 2018 23:15:03 +0200 Subject: [PATCH] Should be DBA::isResult() --- mod/item.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/item.php b/mod/item.php index b5f8370b38..afb119c8af 100644 --- a/mod/item.php +++ b/mod/item.php @@ -994,7 +994,7 @@ function handle_tag(App $a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $n } // Check if $contact has been successfully loaded - if (is_array($contact)) { + if (DBA::isResult($contact)) { if (strlen($inform) && (isset($contact["notify"]) || isset($contact["id"]))) { $inform .= ','; } @@ -1008,6 +1008,7 @@ function handle_tag(App $a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $n $profile = $contact["url"]; $alias = $contact["alias"]; $newname = $contact["nick"]; + if (($newname == "") || (($contact["network"] != NETWORK_OSTATUS) && ($contact["network"] != NETWORK_TWITTER) && ($contact["network"] != NETWORK_STATUSNET) && ($contact["network"] != NETWORK_APPNET))) { $newname = $contact["name"]; -- 2.39.5