Rename DBM method calls to DBA method calls

This commit is contained in:
Hypolite Petovan 2018-07-21 08:40:21 -04:00 committed by Hypolite Petovan
parent 8ddb94ef06
commit 0ec44f3e8a
153 changed files with 813 additions and 918 deletions

View file

@ -1,7 +1,7 @@
<?php
use Friendica\App;
use Friendica\Database\DBM;
use Friendica\Database\DBA;
use Friendica\Model\Contact;
use Friendica\Model\Group;
@ -17,7 +17,7 @@ function contactgroup_content(App $a)
intval($a->argv[2]),
intval(local_user())
);
if (DBM::is_result($r)) {
if (DBA::is_result($r)) {
$change = intval($a->argv[2]);
}
}
@ -27,7 +27,7 @@ function contactgroup_content(App $a)
intval($a->argv[1]),
intval(local_user())
);
if (!DBM::is_result($r)) {
if (!DBA::is_result($r)) {
killme();
}