-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.6
-
None
-
PHP Environment: 5.2.6
Preview of backuped data is sorted alphabetically and not by date. It can be changed in file /includes/acp/acp_database.php:438
from:
$backup_files[gmdate("d-m-Y H:i:s", $matches[1])] = $file;
to:
$backup_files[gmdate("Y-m-d H:i:s", $matches[1])] = $file;
Or maybe better (without changing date format) using custom sort function in line 448.