diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-01-22 16:37:20 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-01-22 16:37:20 +0100 |
commit | a620ce0713f42daea8c5b0c4fdb70c63748af1f8 (patch) | |
tree | 9f4c4f96abb5757c5161fd4b9ee79c12170e1e84 /phpBB/includes/acp/acp_update.php | |
parent | 0572d6e33ad8f19f9f70d872421ee6ab268d6ae8 (diff) | |
download | forums-a620ce0713f42daea8c5b0c4fdb70c63748af1f8.tar forums-a620ce0713f42daea8c5b0c4fdb70c63748af1f8.tar.gz forums-a620ce0713f42daea8c5b0c4fdb70c63748af1f8.tar.bz2 forums-a620ce0713f42daea8c5b0c4fdb70c63748af1f8.tar.xz forums-a620ce0713f42daea8c5b0c4fdb70c63748af1f8.zip |
[ticket/14968] Display possible upgrade on acp index and update page
PHPBB3-14968
Diffstat (limited to 'phpBB/includes/acp/acp_update.php')
-rw-r--r-- | phpBB/includes/acp/acp_update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_update.php b/phpBB/includes/acp/acp_update.php index 529f0f2185..0f79d39ea2 100644 --- a/phpBB/includes/acp/acp_update.php +++ b/phpBB/includes/acp/acp_update.php @@ -37,7 +37,12 @@ class acp_update try { $recheck = $request->variable('versioncheck_force', false); - $updates_available = $version_helper->get_suggested_updates($recheck); + $updates_available = $version_helper->get_update_on_branch($recheck); + $upgrades_available = $version_helper->get_suggested_updates(); + if (!empty($upgrades_available)) + { + $upgrades_available = array_pop($upgrades_available); + } } catch (\RuntimeException $e) { @@ -61,6 +66,8 @@ class acp_update 'CURRENT_VERSION' => $config['version'], 'UPDATE_INSTRUCTIONS' => sprintf($user->lang['UPDATE_INSTRUCTIONS'], $update_link), + 'S_VERSION_UPGRADEABLE' => !empty($upgrades_available), + 'UPGRADE_INSTRUCTIONS' => !empty($upgrades_available) ? $user->lang('UPGRADE_INSTRUCTIONS', $upgrades_available['current'], $upgrades_available['announcement']) : false, )); // Incomplete update? |