diff options
author | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:46:39 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:46:39 -0400 |
commit | 66a1ea52c4e3ed035cec7002006ae074965381e3 (patch) | |
tree | 4a06d57afe3aac5a2bf13defd251bc6d6ac66721 /phpBB/includes | |
parent | 26326937f2523f1464e1d2bb66db1318cace71b3 (diff) | |
parent | 7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3 (diff) | |
download | forums-66a1ea52c4e3ed035cec7002006ae074965381e3.tar forums-66a1ea52c4e3ed035cec7002006ae074965381e3.tar.gz forums-66a1ea52c4e3ed035cec7002006ae074965381e3.tar.bz2 forums-66a1ea52c4e3ed035cec7002006ae074965381e3.tar.xz forums-66a1ea52c4e3ed035cec7002006ae074965381e3.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10274] Remove hardcoded module_id from U_VERSIONCHECK_FORCE on acp_main
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php index 40a186b21d..a922ef570c 100644 --- a/phpBB/includes/acp/acp_main.php +++ b/phpBB/includes/acp/acp_main.php @@ -518,7 +518,7 @@ class acp_main 'U_ADMIN_LOG' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=logs&mode=admin'), 'U_INACTIVE_USERS' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=inactive&mode=list'), 'U_VERSIONCHECK' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=update&mode=version_check'), - 'U_VERSIONCHECK_FORCE' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=1&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, |