diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-07-12 01:12:20 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-07-12 01:12:20 +0200 |
commit | 04c794da107751674c82e39ce45ee1fad726a987 (patch) | |
tree | acf132b5b06fc1eb542d42afe6e9ee0ffc89c908 | |
parent | f81874ca49a4a414b359a488b82fd4c274b24472 (diff) | |
download | volse-hubzilla-04c794da107751674c82e39ce45ee1fad726a987.tar.gz volse-hubzilla-04c794da107751674c82e39ce45ee1fad726a987.tar.bz2 volse-hubzilla-04c794da107751674c82e39ce45ee1fad726a987.zip |
whitespace and comment out info again
-rw-r--r-- | mod/menu.php | 4 | ||||
-rw-r--r-- | mod/mitem.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mod/menu.php b/mod/menu.php index d45405005..92ddf5a5f 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -37,7 +37,7 @@ function menu_post(&$a) { $_REQUEST['menu_id'] = intval(argv(1)); $r = menu_edit($_REQUEST); if($r) { - info( t('Menu updated.') . EOL); + //info( t('Menu updated.') . EOL); goaway(z_root() . '/mitem/' . $menu_id . (($a->is_sys) ? '?f=&sys=1' : '')); } else @@ -46,7 +46,7 @@ function menu_post(&$a) { else { $r = menu_create($_REQUEST); if($r) { - info( t('Menu created.') . EOL); + //info( t('Menu created.') . EOL); goaway(z_root() . '/mitem/' . $r . (($a->is_sys) ? '?f=&sys=1' : '')); } else diff --git a/mod/mitem.php b/mod/mitem.php index ee2de1cf8..bc93165ac 100644 --- a/mod/mitem.php +++ b/mod/mitem.php @@ -162,7 +162,7 @@ function mitem_content(&$a) { '$display' => $display, '$lockstate' => $lockstate, '$menu_names' => $menu_names, - '$sys' => $a->is_sys + '$sys' => $a->is_sys )); $o .= replace_macros(get_markup_template('mitemlist.tpl'),array( |