]> git.mxchange.org Git - friendica.git/blobdiff - mod/notify.php
Rename DBA::is_result to DBA::isResult
[friendica.git] / mod / notify.php
index 87ab68366ba1b4d0535e2efaf4df8b4d70275928..458d0140a64130f28e2f383d392692b75da64f2e 100644 (file)
@@ -64,7 +64,7 @@ function notify_content(App $a)
        $not_tpl = get_markup_template('notify.tpl');
 
        $r = $nm->getAll(['seen'=>0]);
-       if (DBA::is_result($r) > 0) {
+       if (DBA::isResult($r) > 0) {
                foreach ($r as $it) {
                        $notif_content .= replace_macros($not_tpl, [
                                '$item_link' => System::baseUrl(true).'/notify/view/'. $it['id'],