diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index e0d432ccd3..d77c7690f7 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -11,7 +11,7 @@ {L_EXTENSION_NAME} - {L_CURRENT_VERSION} + {L_CURRENT_VERSION} [ {L_VERSIONCHECK_FORCE_UPDATE_ALL} ] {L_EXTENSION_OPTIONS} {L_EXTENSION_ACTIONS} diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php index a91f6fba8b..6b22ba7fe0 100644 --- a/phpBB/includes/acp/acp_extensions.php +++ b/phpBB/includes/acp/acp_extensions.php @@ -91,6 +91,8 @@ class acp_extensions $this->list_disabled_exts($phpbb_extension_manager); $this->list_available_exts($phpbb_extension_manager); + $this->template->assign_var('U_VERSIONCHECK_FORCE', $this->u_action . '&action=list&versioncheck_force=1'); + $this->tpl_name = 'acp_ext_list'; break; diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php index e15b304225..e151c041f3 100644 --- a/phpBB/language/en/acp/extensions.php +++ b/phpBB/language/en/acp/extensions.php @@ -112,4 +112,6 @@ $lang = array_merge($lang, array( 'ANNOUNCEMENT_TOPIC' => 'Release Announcement', 'DOWNLOAD_LATEST' => 'Download Version', 'NO_VERSIONCHECK' => 'No version check information given.', + + 'VERSIONCHECK_FORCE_UPDATE_ALL' => 'Re-Check all', ));