diff options
author | Thomas Willingham <founder@kakste.com> | 2013-08-24 17:05:18 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-08-24 17:05:18 +0100 |
commit | c803fb90df3bbbd8bb88df09a271b5a9214e8c1d (patch) | |
tree | 0ad021580411798fc0ab025f1b1c302fe8afd3f6 /mod/menu.php | |
parent | 6999fb586ba90e9f1c79e9f09f4035f63fb925fd (diff) | |
parent | b0dd38b30949f907265eda757bfa14aa1f38b38f (diff) | |
download | volse-hubzilla-c803fb90df3bbbd8bb88df09a271b5a9214e8c1d.tar.gz volse-hubzilla-c803fb90df3bbbd8bb88df09a271b5a9214e8c1d.tar.bz2 volse-hubzilla-c803fb90df3bbbd8bb88df09a271b5a9214e8c1d.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'mod/menu.php')
-rw-r--r-- | mod/menu.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/menu.php b/mod/menu.php index 910fc389b..c3302544e 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -45,7 +45,7 @@ function menu_content(&$a) { if(argc() == 1) { // list menus $x = menu_list(local_user()); - if($x) { + $o = replace_macros(get_markup_template('menulist.tpl'),array( '$title' => t('Manage Menus'), '$menus' => $x, @@ -57,7 +57,7 @@ function menu_content(&$a) { '$hintcontent' => t('Edit menu contents'), '$hintedit' => t('Edit this menu') )); - } + return $o; |