]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Merge pull request #6260 from annando/issue-6257
[friendica.git] / mod / apps.php
index 80138f78dc9654d1c959dfcd0f9614d38e790c82..d497ce93a2812c6695dbc160bd491c8734562c65 100644 (file)
@@ -5,6 +5,7 @@
 use Friendica\Content\Nav;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
+use Friendica\Core\Renderer;
 
 function apps_content()
 {
@@ -24,8 +25,8 @@ function apps_content()
                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'  => $apps,
        ]);