1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 15:16:16 +02:00

[ticket/11366] Add recheck-all link

PHPBB3-11366
This commit is contained in:
Tristan Darricau 2014-05-12 12:40:16 +02:00
parent 521fe2b8e2
commit 13ecddf85b
3 changed files with 5 additions and 1 deletions

View File

@ -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>

View File

@ -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;

View File

@ -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',
));