mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11366] Add recheck-all link
PHPBB3-11366
This commit is contained in:
parent
521fe2b8e2
commit
13ecddf85b
3 changed files with 5 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{L_EXTENSION_NAME}</th>
|
<th>{L_EXTENSION_NAME}</th>
|
||||||
<th width="20%">{L_CURRENT_VERSION}</th>
|
<th width="20%">{L_CURRENT_VERSION} [ <a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a> ]</th>
|
||||||
<th width="10%">{L_EXTENSION_OPTIONS}</th>
|
<th width="10%">{L_EXTENSION_OPTIONS}</th>
|
||||||
<th width="25%">{L_EXTENSION_ACTIONS}</th>
|
<th width="25%">{L_EXTENSION_ACTIONS}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -91,6 +91,8 @@ class acp_extensions
|
||||||
$this->list_disabled_exts($phpbb_extension_manager);
|
$this->list_disabled_exts($phpbb_extension_manager);
|
||||||
$this->list_available_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';
|
$this->tpl_name = 'acp_ext_list';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -112,4 +112,6 @@ $lang = array_merge($lang, array(
|
||||||
'ANNOUNCEMENT_TOPIC' => 'Release Announcement',
|
'ANNOUNCEMENT_TOPIC' => 'Release Announcement',
|
||||||
'DOWNLOAD_LATEST' => 'Download Version',
|
'DOWNLOAD_LATEST' => 'Download Version',
|
||||||
'NO_VERSIONCHECK' => 'No version check information given.',
|
'NO_VERSIONCHECK' => 'No version check information given.',
|
||||||
|
|
||||||
|
'VERSIONCHECK_FORCE_UPDATE_ALL' => 'Re-Check all',
|
||||||
));
|
));
|
||||||
|
|
Loading…
Add table
Reference in a new issue