1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-19 16:11:21 +02:00

Merge branch '3.2.x'

* 3.2.x:
  [ticket/15355] Remove version field when no update is available
This commit is contained in:
Tristan Darricau
2017-09-09 17:04:32 +02:00

View File

@@ -52,7 +52,10 @@ class acp_update
$updates_available = array(); $updates_available = array();
} }
$template->assign_block_vars('updates_available', $updates_available); if (!empty($updates_available))
{
$template->assign_block_vars('updates_available', $updates_available);
}
$update_link = $phpbb_root_path . 'install/app.' . $phpEx; $update_link = $phpbb_root_path . 'install/app.' . $phpEx;