mirror of
https://github.com/webmin/webmin.git
synced 2025-08-17 19:06:28 +00:00
Fix to compare versions correctly
This commit is contained in:
@ -607,7 +607,7 @@ sub version_atleast
|
||||
if (!$version_cache) {
|
||||
$version_cache = &get_spamassassin_version();
|
||||
}
|
||||
return $version_cache >= $_[0];
|
||||
return &compare_version_numbers($version_cache, '>=', $_[0]);
|
||||
}
|
||||
|
||||
# spam_file_folder()
|
||||
|
Reference in New Issue
Block a user