aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/adm/style/acp_ext_list.html2
-rw-r--r--phpBB/includes/acp/acp_extensions.php2
-rw-r--r--phpBB/language/en/acp/extensions.php2
3 files changed, 5 insertions, 1 deletions
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 @@
<thead>
<tr>
<th>{L_EXTENSION_NAME}</th>
- <th width="20%">{L_CURRENT_VERSION}</th>
+ <th width="20%">{L_CURRENT_VERSION} [&nbsp;<a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a>&nbsp;]</th>
<th width="10%">{L_EXTENSION_OPTIONS}</th>
<th width="25%">{L_EXTENSION_ACTIONS}</th>
</tr>
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 . '&amp;action=list&amp;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',
));