https://bugs.winehq.org/show_bug.cgi?id=53657 --- Comment #1 from Artem S. Tashkinov <aros(a)gmx.com> --- If you're using MariaDB 10.7 or higher, then: https://gitlab.winehq.org/winehq/appdb/-/blob/master/include/application.php Line 118: $sQuery = "SELECT versionId FROM appVersion WHERE appId = '?'$sExtraTerms ORDER by versionName"; Should become $sQuery = "SELECT versionId FROM appVersion WHERE appId = '?'$sExtraTerms ORDER by NATURAL_SORT_KEY(versionName); No idea how to do that in MySQL. This solution may not work: https://www.copterlabs.com/natural-sorting-in-mysql/ Maybe you could use PHP's natsort() instead. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.