diff options
author | friendica <info@friendica.com> | 2013-09-07 02:04:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-07 02:04:15 -0700 |
commit | 9ba6fd7d2872f5c64a9a71922f5791ed2f237ccb (patch) | |
tree | c73acb496264b31b9dcf9780ab2bb55d0b1ca3fb /mod/mitem.php | |
parent | d194ee091af0ee15c7f63def7e8c07ee29e38f39 (diff) | |
download | volse-hubzilla-9ba6fd7d2872f5c64a9a71922f5791ed2f237ccb.tar.gz volse-hubzilla-9ba6fd7d2872f5c64a9a71922f5791ed2f237ccb.tar.bz2 volse-hubzilla-9ba6fd7d2872f5c64a9a71922f5791ed2f237ccb.zip |
allow menu management even if there are no menu items
Diffstat (limited to 'mod/mitem.php')
-rw-r--r-- | mod/mitem.php | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/mod/mitem.php b/mod/mitem.php index ee690907e..6a5785114 100644 --- a/mod/mitem.php +++ b/mod/mitem.php @@ -111,24 +111,23 @@ function mitem_content(&$a) { local_user() ); - if($r) { - $o = replace_macros(get_markup_template('mitemlist.tpl'),array( - '$title' => t('Manage Menu Elements'), - '$menuname' => $a->data['menu']['menu_name'], - '$menudesc' => $a->data['menu']['menu_desc'], - '$edmenu' => t('Edit menu'), - '$menu_id' => $a->data['menu']['menu_id'], - '$mlist' => $r, - '$edit' => t('Edit element'), - '$drop' => t('Drop element'), - '$new' => t('New element'), - '$hintmenu' => t('Edit this menu container'), - '$hintnew' => t('Add menu element'), - '$hintdrop' => t('Delete this menu item'), - '$hintedit' => t('Edit this menu item') - )); - } + $o .= replace_macros(get_markup_template('mitemlist.tpl'),array( + '$title' => t('Manage Menu Elements'), + '$menuname' => $a->data['menu']['menu_name'], + '$menudesc' => $a->data['menu']['menu_desc'], + '$edmenu' => t('Edit menu'), + '$menu_id' => $a->data['menu']['menu_id'], + '$mlist' => $r, + '$edit' => t('Edit element'), + '$drop' => t('Drop element'), + '$new' => t('New element'), + '$hintmenu' => t('Edit this menu container'), + '$hintnew' => t('Add menu element'), + '$hintdrop' => t('Delete this menu item'), + '$hintedit' => t('Edit this menu item') + )); + return $o; |