diff options
author | Mario <mario@mariovavti.com> | 2022-09-15 09:19:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-09-15 09:19:55 +0000 |
commit | 118a5edebc745fe2760f781c8bb9e9006bf6215f (patch) | |
tree | f5162ba06cc2ec32b685fd566b086ed9e52d7b33 /Zotlabs/Module/Contactedit.php | |
parent | 1b4333e8d9c37fcf1d0cb9f952009757a2131528 (diff) | |
download | volse-hubzilla-118a5edebc745fe2760f781c8bb9e9006bf6215f.tar.gz volse-hubzilla-118a5edebc745fe2760f781c8bb9e9006bf6215f.tar.bz2 volse-hubzilla-118a5edebc745fe2760f781c8bb9e9006bf6215f.zip |
fix warnings and regressions
Diffstat (limited to 'Zotlabs/Module/Contactedit.php')
-rw-r--r-- | Zotlabs/Module/Contactedit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Contactedit.php b/Zotlabs/Module/Contactedit.php index f0fb89d3b..58c3380a1 100644 --- a/Zotlabs/Module/Contactedit.php +++ b/Zotlabs/Module/Contactedit.php @@ -452,8 +452,8 @@ class Contactedit extends Controller { if (is_ajax()) { json_return_and_die([ - 'success' => ((intval($_REQUEST['success'])) ? intval($_REQUEST['success']) : 1), - 'message' => (($_REQUEST['success']) ? t('Contact updated') : t('Contact update failed')), + 'success' => ((isset($_REQUEST['success'])) ? intval($_REQUEST['success']) : 1), + 'message' => ((isset($_REQUEST['success'])) ? t('Contact updated') : t('Contact update failed')), 'id' => $contact_id, 'title' => $header_html, 'role' => ((intval($contact['abook_pending'])) ? '' : $roles_dict[$current_permcat]), |