]> git.mxchange.org Git - friendica.git/blobdiff - mod/notify.php
Merge pull request #6559 from tobiasd/20190130-admininiwarning
[friendica.git] / mod / notify.php
index b7e2faf1c98ad722f39e5517246393520d87c342..87035817841d637b957037051ca087b34a9551ba 100644 (file)
@@ -48,7 +48,7 @@ function notify_init(App $a)
                $r = $nm->setAllSeen();
                $j = json_encode(['result' => ($r) ? 'success' : 'fail']);
                echo $j;
-               killme();
+               exit();
        }
 }
 
@@ -58,11 +58,13 @@ function notify_content(App $a)
                return Login::form();
        }
 
+       $notif_content = '';
+
        $nm = new NotificationsManager();
 
-       $notif_tpl = get_markup_template('notifications.tpl');
+       $notif_tpl = Renderer::getMarkupTemplate('notifications.tpl');
 
-       $not_tpl = get_markup_template('notify.tpl');
+       $not_tpl = Renderer::getMarkupTemplate('notify.tpl');
 
        $r = $nm->getAll(['seen'=>0]);
        if (DBA::isResult($r) > 0) {