diff options
author | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:45:56 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:45:56 -0400 |
commit | 7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3 (patch) | |
tree | 5ac5fa4170b48c7f9e402f4ca78c6c1434d7df48 /phpBB | |
parent | d80be455b953e7d7cb0670dc2412e28944938e9f (diff) | |
parent | 0690e9f10388a14c3bceafc81e7bb226e697268c (diff) | |
download | forums-7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3.tar forums-7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3.tar.gz forums-7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3.tar.bz2 forums-7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3.tar.xz forums-7c84cb5f5f80217ef6ff0ed6e9adbbf7c409e4a3.zip |
Merge remote-tracking branch 'github-bantu/ticket/10274' into develop-olympus
* github-bantu/ticket/10274:
[ticket/10274] Remove hardcoded module_id from U_VERSIONCHECK_FORCE on acp_main
Diffstat (limited to 'phpBB')
-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 68445d814f..6d1c02248a 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, |