X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=a821ef5d5b89192b5534df7e8b78cd074e9a7964;hb=5299f259202725644cdaa678ea174d55a5126b27;hp=58752de32231fbaf90b76ae3d84c2f9e16d2ed37;hpb=4cff911939b263993eb41682ca558c975e2db01f;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index 58752de322..a821ef5d5b 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,15 +1,25 @@ ' . t('Applications') . ''; + if(count($a->apps)==0) + notice( t('No installed applications.') . EOL); - $o .= '
' . t('Private Notes') . '
'; - if($a->apps) - $o .= $a->apps; + $tpl = get_markup_template("apps.tpl"); + return replace_macros($tpl, array( + '$title' => $title, + '$apps' => $a->apps, + )); - return $o; + -} \ No newline at end of file +}