aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-12 12:40:16 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-28 22:19:00 +0200
commit13ecddf85bce88cb0b99684040578ffa766db782 (patch)
tree62d6e50c8164885e575c1f47ecede2377ef956da /phpBB
parent521fe2b8e29fdb61ab0c02ec40f20b652d66623a (diff)
downloadforums-13ecddf85bce88cb0b99684040578ffa766db782.tar
forums-13ecddf85bce88cb0b99684040578ffa766db782.tar.gz
forums-13ecddf85bce88cb0b99684040578ffa766db782.tar.bz2
forums-13ecddf85bce88cb0b99684040578ffa766db782.tar.xz
forums-13ecddf85bce88cb0b99684040578ffa766db782.zip
[ticket/11366] Add recheck-all link
PHPBB3-11366
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',
));