diff --git a/e107_admin/header.php b/e107_admin/header.php index a5c5efc44..14c6c5d77 100644 --- a/e107_admin/header.php +++ b/e107_admin/header.php @@ -264,7 +264,7 @@ if (!empty($pref['e_header_list']) && is_array($pref['e_header_list'])) foreach($pref['e_header_list'] as $val) { // no checks fore existing file - performance - e107_include(e_PLUGIN.$val."/e_header.php"); + e107_include_once(e_PLUGIN.$val."/e_header.php"); } } unset($e_headers); diff --git a/e107_admin/menus.php b/e107_admin/menus.php index d2e32e7f2..1d5e78cb9 100644 --- a/e107_admin/menus.php +++ b/e107_admin/menus.php @@ -429,12 +429,11 @@ TEMPL; .menuOptions > select { max-width:100% } - .menu-options-buttons { } + .menu-options-buttons { display:block; text-align:right; } + select.menu-btn { text-align:left; display:block; width:100%; margin-left:3px } #menu-manage-actions { width:50%; vertical-align:top; text-align:center; padding:15px } - select.menu-btn { text-align:left } - label { font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; color:black; line-height:14px } label.input { margin-right:10px; } @@ -1772,7 +1771,14 @@ class e_layout - +if (!empty($pref['e_header_list']) && is_array($pref['e_header_list'])) +{ + foreach($pref['e_header_list'] as $val) + { + // no checks fore existing file - performance + e107_include_once(e_PLUGIN.$val."/e_header.php"); + } +} $e_sub_cat = 'menus';