1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/17325] Show message for "Re-Check version" if phpBB is still up to date

Show explicit message for "Re-Check version" if installed version is still up
to date

PHPBB3-17325
This commit is contained in:
LukeWCS
2024-05-28 20:55:49 +02:00
parent d365f17ebd
commit ae18669fcd
2 changed files with 18 additions and 13 deletions

View File

@@ -454,6 +454,7 @@ class acp_main
$template->assign_vars(array(
'S_VERSION_UP_TO_DATE' => empty($updates_available),
'S_VERSION_UPGRADEABLE' => !empty($upgrades_available),
'S_VERSIONCHECK_FORCE' => (bool) $recheck,
'UPGRADE_INSTRUCTIONS' => !empty($upgrades_available) ? $user->lang('UPGRADE_INSTRUCTIONS', $upgrades_available['current'], $upgrades_available['announcement']) : false,
));
}