Several bug fixes

* Batch Manager no longer have a php error
 * Intro Graph display the actual week when it's monday
 * fix the "groups" reserved word
 * History is now summarize on the stats pag access
 * New piwigo no longer have PHP error due to stats.php
This commit is contained in:
Zacharie
2020-06-16 12:20:04 +02:00
parent cb1d7522d8
commit 2e70ebf777
4 changed files with 27 additions and 6 deletions
+5
View File
@@ -453,6 +453,11 @@ if ($conf['enable_synchronization'])
$prefilters[] = array('ID' => 'no_sync_md5sum', 'NAME' => l10n('With no checksum'));
}
function UC_name_compare($a, $b)
{
return strcmp(strtolower($a['NAME']), strtolower($b['NAME']));
}
$prefilters = trigger_change('get_batch_manager_prefilters', $prefilters);
usort($prefilters, 'UC_name_compare');