You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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
The text was updated successfully, but these errors were encountered: