From 6d0697eb891609bf242c29f5b9567942df9343b9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 24 Sep 2014 00:34:17 +0200 Subject: [PATCH] [ticket/13077] Move extension module to the top of the Customise tab PHPBB3-13077 --- phpBB/install/install_install.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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')