diff options
author | Mario <mario@mariovavti.com> | 2022-09-14 17:43:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-09-14 17:43:12 +0000 |
commit | d66a0b50e9f11e7e2d5e2d9dc1055944db5b5600 (patch) | |
tree | 287025c6a4eb88082da15808d85fdbb352b94a35 /Zotlabs | |
parent | 1d56b9a1bb155d7a0b4377f9bb1e195230e545e4 (diff) | |
download | volse-hubzilla-d66a0b50e9f11e7e2d5e2d9dc1055944db5b5600.tar.gz volse-hubzilla-d66a0b50e9f11e7e2d5e2d9dc1055944db5b5600.tar.bz2 volse-hubzilla-d66a0b50e9f11e7e2d5e2d9dc1055944db5b5600.zip |
address issue #1688
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Contactedit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Contactedit.php b/Zotlabs/Module/Contactedit.php index d306039d2..f0fb89d3b 100644 --- a/Zotlabs/Module/Contactedit.php +++ b/Zotlabs/Module/Contactedit.php @@ -103,7 +103,7 @@ class Contactedit extends Controller { dbesc($profile_id), intval(local_channel()) ); - if (!count($r)) { + if (!$r) { notice(t('Could not locate selected profile.') . EOL); return; } |