diff options
author | redmatrix <git@macgirvin.com> | 2016-03-31 18:53:05 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-31 18:53:05 -0700 |
commit | 36b388ab8cb8435dc621b5c589e9f6555593568f (patch) | |
tree | e7794974bb516abe941ebcd4be76900dd27fc490 | |
parent | c0b3d7e1b480ceeed89b71efd056ed9edda2dfef (diff) | |
download | volse-hubzilla-36b388ab8cb8435dc621b5c589e9f6555593568f.tar.gz volse-hubzilla-36b388ab8cb8435dc621b5c589e9f6555593568f.tar.bz2 volse-hubzilla-36b388ab8cb8435dc621b5c589e9f6555593568f.zip |
issue #336
-rw-r--r-- | include/import.php | 3 | ||||
-rw-r--r-- | include/menu.php | 6 | ||||
-rw-r--r-- | util/typohelper.php | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/include/import.php b/include/import.php index b7ec1c565..9a57012b2 100644 --- a/include/import.php +++ b/include/import.php @@ -636,6 +636,7 @@ function sync_events($channel,$events) { function import_menus($channel,$menus) { + if($channel && $menus) { foreach($menus as $menu) { $m = array(); @@ -681,6 +682,8 @@ function import_menus($channel,$menus) { } } } + + } diff --git a/include/menu.php b/include/menu.php index ca3038946..e8f1d8eb8 100644 --- a/include/menu.php +++ b/include/menu.php @@ -35,11 +35,11 @@ function menu_element($menu) { $arr['edited'] = $menu['menu']['menu_edited']; $arr['baseurl'] = z_root(); - if($menu['menu_flags']) { + if($menu['menu']['menu_flags']) { $arr['flags'] = array(); - if($menu['menu_flags'] & MENU_BOOKMARK) + if($menu['menu']['menu_flags'] & MENU_BOOKMARK) $arr['flags'][] = 'bookmark'; - if($menu['menu_flags'] & MENU_SYSTEM) + if($menu['menu']['menu_flags'] & MENU_SYSTEM) $arr['flags'][] = 'system'; } if($menu['items']) { diff --git a/util/typohelper.php b/util/typohelper.php index 589702a02..2453a5097 100644 --- a/util/typohelper.php +++ b/util/typohelper.php @@ -1,5 +1,7 @@ <?php + require_once('boot.php'); + $str = <<< EOT error_reporting(E_ERROR | E_WARNING | E_PARSE ); ini_set('display_errors', '1'); |