diff options
author | friendica <info@friendica.com> | 2014-05-15 19:54:37 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-15 19:54:37 -0700 |
commit | 077b97eac46989cfc7aadc14f3c4974fb31473b3 (patch) | |
tree | 4258c4f67d84c618558f821dcbe6e87e12600c8c /mod | |
parent | 99d97170deb1d2b04e649b8f7a3170145ff2a19d (diff) | |
download | volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.tar.gz volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.tar.bz2 volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.zip |
the app menu takes form
Diffstat (limited to 'mod')
-rw-r--r-- | mod/apps.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mod/apps.php b/mod/apps.php index 678af74e7..51d610703 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -8,14 +8,14 @@ function apps_content(&$a) { $apps = get_system_apps(); - $o .= print_r($apps,true); +// $o .= print_r($apps,true); - return $o; +// return $o; -// $tpl = get_markup_template("apps.tpl"); -// return replace_macros($tpl, array( -// '$title' => t('Applications'), -// '$apps' => $apps, -// )); + + return replace_macros(get_markup_template('apps.tpl'), array( + '$title' => t('Applications'), + '$apps' => $apps, + )); } |