Merge pull request #3296 from tobiasd/20170407-isresult

small fix for #3254
This commit is contained in:
rabuzarus 2017-04-07 11:41:38 +02:00 committed by GitHub
commit 39ccbe2e45
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ function update_gcontact_run(&$argv, &$argc) {
$r = q("SELECT * FROM `gcontact` WHERE `id` = %d", intval($contact_id));
if (!dbm::_is_result($r)) {
if (!dbm::is_result($r)) {
return;
}