Merge pull request #9320 from tobiasd/20200929-adminHotfixVersions
Hotfix releases were not detected in the admin panel
This commit is contained in:
commit
8fb3aa47dd
|
@ -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])) {
|
||||
|
|
Loading…
Reference in a new issue