X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=d497ce93a2812c6695dbc160bd491c8734562c65;hb=3fc5c1ad840f98926319478a855dab3686a0ace3;hp=a220afff1cadcad109d520239030bea47c33e7e2;hpb=39ff6e9ce9251fe69b56ba05ea7bdc1896f34de2;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index a220afff1c..d497ce93a2 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,26 +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, [ + $tpl = Renderer::getMarkupTemplate('apps.tpl'); + return Renderer::replaceMacros($tpl, [ '$title' => $title, - '$apps' => $a->apps, + '$apps' => $apps, ]); }