Skip to content

Commit

Permalink
Error in install
Browse files Browse the repository at this point in the history
Class include out of sequence. Fixes XOOPS#508
  • Loading branch information
geekwright committed Jan 22, 2017
1 parent 7be879d commit ce0e3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/install/include/common.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
include XOOPS_INSTALL_PATH . '/class/installwizard.php';
include_once XOOPS_ROOT_PATH . '/include/version.php';
include_once XOOPS_INSTALL_PATH . '/include/functions.php';
include_once XOOPS_ROOT_PATH . '/include/defines.php';
//include_once XOOPS_ROOT_PATH . '/class/xoopsload.php';
if (!class_exists('XoopsBaseConfig', false)) {
include_once XOOPS_ROOT_PATH . '/class/XoopsBaseConfig.php';
XoopsBaseConfig::bootstrapTransition();
}
include_once XOOPS_ROOT_PATH . '/include/defines.php';
$_SESSION['pageHasHelp'] = false;
$_SESSION['pageHasForm'] = false;

Expand Down

0 comments on commit ce0e3cf

Please sign in to comment.