Help mode in admin_easymod
Status: Beta
Brought to you by:
wgeric
__________________________
in admin_easymod.php.txt (around line 654):
__________________________
if ($mode == 'help')
{
// ...
$template->pparse('body');
include('page_footer_admin.'.$phpEx);
} // 654
if \(\($mode == 'install'\) || \($mode == 'settings'\) ||
($mode == 'history'))
__________________________
shouldn't there be an "else"?
__________________________
if \($mode == 'help'\)
\{
// ...
$template->pparse\('body'\);
include\('page\_footer\_admin.'.$phpEx\);
\} // 654
else if \(\($mode == 'install'\) || \($mode == 'settings'\)
|| ($mode == 'history'))
Logged In: YES
user_id=812985
page_footer_admin performs an exit, hence 'else' is not
required.