aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-10-06 23:35:35 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-10-06 23:35:35 +0200
commit38ac0bcc8ea1a9fbaf81993a87d6230264de8d33 (patch)
treece22da27893f361cda5004bbdc5b7685d49f9aa7 /phpBB/install
parentb300e06226f142a539fc73d4eeada2d05191461b (diff)
parent6d0697eb891609bf242c29f5b9567942df9343b9 (diff)
downloadforums-38ac0bcc8ea1a9fbaf81993a87d6230264de8d33.tar
forums-38ac0bcc8ea1a9fbaf81993a87d6230264de8d33.tar.gz
forums-38ac0bcc8ea1a9fbaf81993a87d6230264de8d33.tar.bz2
forums-38ac0bcc8ea1a9fbaf81993a87d6230264de8d33.tar.xz
forums-38ac0bcc8ea1a9fbaf81993a87d6230264de8d33.zip
Merge pull request #2991 from nickvergessen/ticket/13077
[ticket/13077] Move extension module to the top of the Customise tab * nickvergessen/ticket/13077: [ticket/13077] Move extension module to the top of the Customise tab
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/install_install.php13
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')