mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
check if empty
This commit is contained in:
@@ -265,7 +265,7 @@ class Libzotdir {
|
|||||||
if (is_array($j['transactions']) && count($j['transactions'])) {
|
if (is_array($j['transactions']) && count($j['transactions'])) {
|
||||||
foreach ($j['transactions'] as $t) {
|
foreach ($j['transactions'] as $t) {
|
||||||
|
|
||||||
if (!($t['hash'] || $t['transaction_id'] || $t['address'])) {
|
if (empty($t['hash']) || empty($t['transaction_id']) || empty($t['address'])) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -647,7 +647,7 @@ class Libzotdir {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!($hash || $guid || $addr)) {
|
if (empty($hash) || empty($guid) || empty($addr)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user