allow -rc in friendica version listings

This commit is contained in:
Tobias Diekershoff 2015-12-09 20:48:43 +01:00
parent ce39992875
commit 0905f18c0f
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ function admin_page_federation(&$a) {
$newVV = $vv['version']; $newVV = $vv['version'];
$lastDot = strrpos($newVV,'.'); $lastDot = strrpos($newVV,'.');
$len = strlen($newVV)-1; $len = strlen($newVV)-1;
if ($lastDot == $len-4) if (($lastDot == $len-4) && (!strrpos($newVV,'-rc')==$len-3))
$newVV = substr($newVV, 0, $lastDot); $newVV = substr($newVV, 0, $lastDot);
if (isset($newV[$newVV])) if (isset($newV[$newVV]))
{ {