X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=d497ce93a2812c6695dbc160bd491c8734562c65;hb=ed7bada71eb7e5d1c2953e94abb47b531781306d;hp=0c0df76544ed6ca2a3fb97e05653bef278593a45;hpb=8f253f6c1288534c50fac34f05afb1a2c07c9335;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index 0c0df76544..d497ce93a2 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,25 +1,33 @@ apps) == 0) { - notice(t('No installed applications.') . EOL); + if (count($apps) == 0) { + notice(L10n::t('No installed applications.') . EOL); } - $tpl = get_markup_template('apps.tpl'); - return replace_macros($tpl, array( + $tpl = Renderer::getMarkupTemplate('apps.tpl'); + return Renderer::replaceMacros($tpl, [ '$title' => $title, - '$apps' => $a->apps, - )); + '$apps' => $apps, + ]); }