mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
fixes #2540 only prompt to update container on version lower than the latest version
This commit is contained in:
@@ -96,7 +96,8 @@ class updates
|
|||||||
$last_version = trim($all_versions[0]);
|
$last_version = trim($all_versions[0]);
|
||||||
if ('Official' === $env)
|
if ('Official' === $env)
|
||||||
{
|
{
|
||||||
if ($this->container_version_compare($build_version, $last_version))
|
// Check if build_version is lower than the latest version
|
||||||
|
if ($this->container_version_compare($build_version, $last_version) == '-1')
|
||||||
{
|
{
|
||||||
$last_branch = get_branch_from_version(substr($last_version, 0, -1));
|
$last_branch = get_branch_from_version(substr($last_version, 0, -1));
|
||||||
if ($last_branch == $actual_branch)
|
if ($last_branch == $actual_branch)
|
||||||
@@ -111,7 +112,7 @@ class updates
|
|||||||
$branch = get_branch_from_version(substr($version, 0, -1));
|
$branch = get_branch_from_version(substr($version, 0, -1));
|
||||||
if ($branch == $actual_branch)
|
if ($branch == $actual_branch)
|
||||||
{
|
{
|
||||||
if ($this->container_version_compare($build_version, $version))
|
if ($this->container_version_compare($build_version, $version) == '-1')
|
||||||
{
|
{
|
||||||
$new_versions['minor'] = $version;
|
$new_versions['minor'] = $version;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user