aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-07-15 00:05:20 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-07-15 00:06:25 +0200
commit0690e9f10388a14c3bceafc81e7bb226e697268c (patch)
treefca298289cf2b7d8f1f61c2e4487b7cba37b649f
parent4b2ff05a3b4467390a206bb56d0dcfcc39256e86 (diff)
downloadforums-0690e9f10388a14c3bceafc81e7bb226e697268c.tar
forums-0690e9f10388a14c3bceafc81e7bb226e697268c.tar.gz
forums-0690e9f10388a14c3bceafc81e7bb226e697268c.tar.bz2
forums-0690e9f10388a14c3bceafc81e7bb226e697268c.tar.xz
forums-0690e9f10388a14c3bceafc81e7bb226e697268c.zip
[ticket/10274] Remove hardcoded module_id from U_VERSIONCHECK_FORCE on acp_main
PHPBB3-10274
-rw-r--r--phpBB/includes/acp/acp_main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php
index 60cebe3c08..f2aa3c0fb0 100644
--- a/phpBB/includes/acp/acp_main.php
+++ b/phpBB/includes/acp/acp_main.php
@@ -521,7 +521,7 @@ class acp_main
'U_ADMIN_LOG' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=logs&amp;mode=admin'),
'U_INACTIVE_USERS' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=inactive&amp;mode=list'),
'U_VERSIONCHECK' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=update&amp;mode=version_check'),
- 'U_VERSIONCHECK_FORCE' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=1&amp;versioncheck_force=1'),
+ 'U_VERSIONCHECK_FORCE' => append_sid("{$phpbb_admin_path}index.$phpEx", 'versioncheck_force=1'),
'S_ACTION_OPTIONS' => ($auth->acl_get('a_board')) ? true : false,
'S_FOUNDER' => ($user->data['user_type'] == USER_FOUNDER) ? true : false,