diff options
| -rw-r--r-- | phpBB/install/install_install.php | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 20b211dde9..9867c56a3f 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1654,6 +1654,19 @@ class install_install extends module  				$db->sql_freeresult($result);  				$_module->move_module_by($row, 'move_up', 5); + +				// Move extension management module 1 up... +				$sql = 'SELECT * +					FROM ' . MODULES_TABLE . " +					WHERE module_langname = 'ACP_EXTENSION_MANAGEMENT' +						AND module_class = 'acp' +						AND module_mode = '' +						AND module_basename = ''"; +				$result = $db->sql_query($sql); +				$row = $db->sql_fetchrow($result); +				$db->sql_freeresult($result); + +				$_module->move_module_by($row, 'move_up', 1);  			}  			if ($module_class == 'mcp')  | 
