mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 04:45:16 +02:00
Rename DBA::is_result to DBA::isResult
This commit is contained in:
parent
0ec44f3e8a
commit
ecea7425f8
152 changed files with 765 additions and 765 deletions
4
boot.php
4
boot.php
|
@ -803,7 +803,7 @@ function run_update_function($x, $prefix)
|
|||
function check_addons(App $a)
|
||||
{
|
||||
$r = q("SELECT * FROM `addon` WHERE `installed` = 1");
|
||||
if (DBA::is_result($r)) {
|
||||
if (DBA::isResult($r)) {
|
||||
$installed = $r;
|
||||
} else {
|
||||
$installed = [];
|
||||
|
@ -1002,7 +1002,7 @@ function feed_birthday($uid, $tz)
|
|||
intval($uid)
|
||||
);
|
||||
|
||||
if (DBA::is_result($p)) {
|
||||
if (DBA::isResult($p)) {
|
||||
$tmp_dob = substr($p[0]['dob'], 5);
|
||||
if (intval($tmp_dob)) {
|
||||
$y = DateTimeFormat::timezoneNow($tz, 'Y');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue