]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Merge pull request #470 from CyberDomovoy/html5-treebuilder-namespace-error
[friendica.git] / mod / apps.php
index 1d08d2e7f6954a2ea532f52578164cbeba99218a..8049b45fb3e846162b8a06ab41bfa2763b61b84a 100644 (file)
@@ -1,14 +1,18 @@
 <?php
 
-
 function apps_content(&$a) {
+       $title = t('Applications');
 
-       $o .= '<h3>' . t('Applications') . '</h3>';
+       if(count($a->apps)==0)
+               notice( t('No installed applications.') . EOL);
 
-       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
+}