1
1
Fork 0

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
commit 0ec44f3e8a
153 changed files with 813 additions and 918 deletions

View file

@ -5,7 +5,7 @@
use Friendica\App;
use Friendica\Core\L10n;
use Friendica\Core\System;
use Friendica\Database\DBM;
use Friendica\Database\DBA;
use Friendica\Model\Mail;
use Friendica\Model\Profile;
@ -29,7 +29,7 @@ function wallmessage_post(App $a) {
dbesc($recipient)
);
if (! DBM::is_result($r)) {
if (! DBA::is_result($r)) {
logger('wallmessage: no recipient');
return;
}
@ -91,7 +91,7 @@ function wallmessage_content(App $a) {
dbesc($recipient)
);
if (! DBM::is_result($r)) {
if (! DBA::is_result($r)) {
notice(L10n::t('No recipient.') . EOL);
logger('wallmessage: no recipient');
return;