sort versions of extension propperly

This commit is contained in:
Uwe Steinmann 2020-08-14 08:48:09 +02:00
parent f12983d842
commit d15f742a46
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
- better import of users from csv file
- fix various methods in restapi (Closes: #481)
- add hooks showDocumentKeywords and showDocumentCategories
- sort versions of extension in extension manager propperly
--------------------------------------------------------------------------------
Changes in version 5.1.18

View File

@ -570,6 +570,7 @@ class SeedDMS_Extension_Mgr {
}
}
}
uksort($result, function($a, $b){return version_compare($b, $a);});
return $result;
} /* }}} */