// Adminimport revert sort order in select

This commit is contained in:
gRoussac
2013-09-26 18:02:28 +02:00
parent 4fc4ee721e
commit 98148cfe03
+1 -1
View File
@@ -2555,7 +2555,7 @@ class AdminImportControllerCore extends AdminController
{
if ($a == $b)
return 0;
return ($a < $b) ? 1 : -1;
return ($b < $a) ? 1 : -1;
}
protected function openCsvFile()