mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
change to make sure eg. '1.0.0' is counted less the '1.0.0.xxx' !
This commit is contained in:
parent
00d019863d
commit
551c66d68e
@ -719,10 +719,7 @@
|
||||
{
|
||||
$testa[1] = 0;
|
||||
}
|
||||
if(@$testa[3] == '')
|
||||
{
|
||||
$testa[3] = 0;
|
||||
}
|
||||
|
||||
$testb = explode('.',$newb);
|
||||
if(@$testb[1] == '')
|
||||
{
|
||||
@ -763,8 +760,9 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
if($DEBUG) { echo ' no, they are equal.'; }
|
||||
$less = 0;
|
||||
if($DEBUG) { echo ' no, they are equal or of different length.'; }
|
||||
// makes sure eg. '1.0.0' is counted less the '1.0.0.xxx' !
|
||||
$less = count($testa) < count($testb) ? 1 : 0;
|
||||
}
|
||||
}
|
||||
if($DEBUG) { echo '<br>Check value is: "'.$less.'"'; }
|
||||
|
Loading…
Reference in New Issue
Block a user