X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotifications.php;h=e306f0c8a64d2cf86a41d6c719c6112fa6d560d8;hb=af88c2daa34e39cb6430abf64d0648665bfeb9cd;hp=4db4a8a83edc3c6a16fc0eb8d656e5454d532db6;hpb=e6f61c2cc77f23ad7f2fd34bab3f9b374fc48618;p=friendica.git diff --git a/mod/notifications.php b/mod/notifications.php index 4db4a8a83e..e306f0c8a6 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,7 +1,7 @@ fetch(['id' => $request_id, 'uid' => local_user()]); + $intro = DI::intro()->selectFirst(['id' => $request_id, 'uid' => local_user()]); switch ($_POST['submit']) { case L10n::t('Discard'): - $Intro->discard(); + $intro->discard(); break; case L10n::t('Ignore'): - $Intro->ignore(); + $intro->ignore(); break; }