diff options
author | friendica <info@friendica.com> | 2013-08-13 20:57:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-13 20:57:03 -0700 |
commit | 9508967c7350e69bf3321aaa63f5527a3e8096f4 (patch) | |
tree | c2b6c78f47cf2c7a1623d4bc528b58cc2d8793fc /mod/menu.php | |
parent | 680baff73d70769714d806c00cc84c6e65faba0f (diff) | |
download | volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.tar.gz volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.tar.bz2 volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.zip |
menu management is now functional with the exception of acl's (and of course a way to display the menus you create, and probably a bit more input sanity checking)
Diffstat (limited to 'mod/menu.php')
-rw-r--r-- | mod/menu.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/menu.php b/mod/menu.php index f00bf7a78..910fc389b 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -22,7 +22,7 @@ function menu_post(&$a) { } else { $r = menu_create($_REQUEST); - if($r) { + if($r) { info( t('Menu created.') . EOL); goaway(z_root() . '/mitem/' . $r); } |