* features.class.php - Fixed: Unknown version is considered safe
/trunk/features.class.php |
---|
264,7 → 264,7 |
/* DEBUG */ |
// echo " $impl=$thisImplVer "; |
if ($thisImplVer === '-' || $thisImplVer > $safeVer) |
if (preg_match('/^-?$/', $thisImplVer) || $thisImplVer > $safeVer) |
{ |
return ''; |
} |