Moves the function "is_result" from dba to dbm.
This commit is contained in:
parent
91e20f2f9b
commit
e4c6cfd2d8
11 changed files with 30 additions and 40 deletions
8
boot.php
8
boot.php
|
|
@ -940,7 +940,7 @@ class App {
|
|||
} else {
|
||||
$r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like '%%/%s'",
|
||||
$common_filename);
|
||||
if(! dba::is_result($r)){
|
||||
if(! dbm::is_result($r)){
|
||||
$this->cached_profile_image[$avatar_image] = $avatar_image;
|
||||
} else {
|
||||
$this->cached_profile_picdate[$common_filename] = "?rev=".urlencode($r[0]['picdate']);
|
||||
|
|
@ -1425,7 +1425,7 @@ function run_update_function($x) {
|
|||
function check_plugins(&$a) {
|
||||
|
||||
$r = q("SELECT * FROM `addon` WHERE `installed` = 1");
|
||||
if(dba::is_result($r))
|
||||
if(dbm::is_result($r))
|
||||
$installed = $r;
|
||||
else
|
||||
$installed = array();
|
||||
|
|
@ -1756,7 +1756,7 @@ function current_theme(){
|
|||
$r = q("select theme from user where uid = %d limit 1",
|
||||
intval($a->profile_uid)
|
||||
);
|
||||
if(dba::is_result($r))
|
||||
if(dbm::is_result($r))
|
||||
$page_theme = $r[0]['theme'];
|
||||
}
|
||||
|
||||
|
|
@ -1869,7 +1869,7 @@ function feed_birthday($uid,$tz) {
|
|||
intval($uid)
|
||||
);
|
||||
|
||||
if(dba::is_result($p)) {
|
||||
if(dbm::is_result($p)) {
|
||||
$tmp_dob = substr($p[0]['dob'],5);
|
||||
if(intval($tmp_dob)) {
|
||||
$y = datetime_convert($tz,$tz,'now','Y');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue