mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
22aaa5608f
|
@ -437,7 +437,7 @@ class SeedDMS_Extension_Mgr {
|
|||
$fullfill = false;
|
||||
foreach($dval as $ddval) {
|
||||
$tmp = explode('-', $ddval, 2);
|
||||
if(self::cmpVersion($tmp[0], $version->version()) > 0 || ($tmp[1] && self::cmpVersion($tmp[1], $version->version()) < 0))
|
||||
if(self::cmpVersion($tmp[0], $version->version()) > 0 || (!empty($tmp[1]) && self::cmpVersion($tmp[1], $version->version()) < 0))
|
||||
; // No within version range
|
||||
else
|
||||
$fullfill = true;
|
||||
|
|
Loading…
Reference in New Issue
Block a user