ResponsiveFilemanager icon indicating copy to clipboard operation
ResponsiveFilemanager copied to clipboard

Date sorting bug in dialog.php version PHP 8

Open winr777 opened this issue 1 year ago • 0 comments

Hi, I saw that with or without the parameter in the url "&sort_by=date" the files were not properly sorted by date. So I modified the following line in dialog.php version PHP 8:

? $x['date'] <=> $y['date'] : $y['date'] <=> $x['date'];

by the lines

? $x['date'] < $y['date'] : $y['date'] >= $x['date'];

I think it should also be modified on the lines 904 "size" and lines 920 "extension" .

good day to all

winr777 avatar Mar 16 '24 09:03 winr777