]> git.mxchange.org Git - friendica.git/commitdiff
Fix typo when referring to dba::exists
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 13 Jan 2018 04:54:16 +0000 (23:54 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 14 Jan 2018 04:46:59 +0000 (23:46 -0500)
mod/contacts.php

index c26a1b57b64d104f01742cf14cccd1da68c5a3e5..f213b8370c270fc83591af0c2edb28cc4fc3b80a 100644 (file)
@@ -167,7 +167,7 @@ function contacts_post(App $a)
                return;
        }
 
-       if (!DBM::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) {
+       if (!dba::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) {
                notice(t('Could not access contact record.') . EOL);
                goaway('contacts');
                return; // NOTREACHED
@@ -177,7 +177,7 @@ function contacts_post(App $a)
 
        $profile_id = intval($_POST['profile-assign']);
        if ($profile_id) {
-               if (!DBM::exists('profile', ['id' => $profile_id, 'uid' => local_user()])) {
+               if (!dba::exists('profile', ['id' => $profile_id, 'uid' => local_user()])) {
                        notice(t('Could not locate selected profile.') . EOL);
                        return;
                }