Merge pull request #9320 from tobiasd/20200929-adminHotfixVersions

Hotfix releases were not detected in the admin panel
This commit is contained in:
Michael Vogel
2020-09-29 08:31:59 +02:00
committed by GitHub

View File

@@ -161,8 +161,9 @@ class Federation extends BaseAdmin
$newVC = $vv['total'];
$newVV = $vv['version'];
$lastDot = strrpos($newVV, '.');
$firstDash = strpos($newVV, '-');
$len = strlen($newVV) - 1;
if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3)) {
if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3) && (!$firstDash == $len - 1)) {
$newVV = substr($newVV, 0, $lastDot);
}
if (isset($newV[$newVV])) {