diff --git a/e107_core/shortcodes/batch/admin_shortcodes.php b/e107_core/shortcodes/batch/admin_shortcodes.php index 917488b6b..922e4c0ba 100644 --- a/e107_core/shortcodes/batch/admin_shortcodes.php +++ b/e107_core/shortcodes/batch/admin_shortcodes.php @@ -161,9 +161,15 @@ class admin_shortcodes $help_text = $ns->tablerender($tmp['caption'],$tmp['text'],'e_help',true); } + if(e_PAGE === "menus.php") // quite fix to disable e107_admin/menus.php help file in all languages. + { + return $help_text; + } + + $helpfile = ''; - if(strpos(e_SELF, e_ADMIN_ABS) !== FALSE) + if(strpos(e_SELF, e_ADMIN_ABS) !== false) { if (is_readable(e_LANGUAGEDIR.e_LANGUAGE.'/admin/help/'.e_PAGE)) { diff --git a/e107_languages/English/admin/help/menus.php b/e107_languages/English/admin/help/menus.php index da1348d44..59d12b738 100644 --- a/e107_languages/English/admin/help/menus.php +++ b/e107_languages/English/admin/help/menus.php @@ -16,11 +16,6 @@ if (!getperms("2")) exit; } -if(!deftrue("e_DEBUG_MENUMANAGER")) -{ - return; -} - $sql = e107::getDb(); $tp = e107::getParser();