mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-16 22:35:59 +02:00
fixes #348 force logical album sort order
This way we can safely remove empty albums without decrementing count_categories twice.
This commit is contained in:
@@ -491,6 +491,7 @@ SELECT image_id
|
||||
function get_computed_categories(&$userdata, $filter_days=null)
|
||||
{
|
||||
$query = 'SELECT c.id AS cat_id, id_uppercat';
|
||||
$query.= ', global_rank';
|
||||
// Count by date_available to avoid count null
|
||||
$query .= ',
|
||||
MAX(date_available) AS date_last, COUNT(date_available) AS nb_images
|
||||
@@ -533,6 +534,11 @@ FROM '.CATEGORIES_TABLE.' as c
|
||||
$cats[$row['cat_id']] = $row;
|
||||
}
|
||||
|
||||
// it is important to logically sort the albums because some operations
|
||||
// (like removal) rely on this logical order. Child album doesn't always
|
||||
// have a bigger id than its parent (if it was moved afterwards).
|
||||
uasort($cats, 'global_rank_compare');
|
||||
|
||||
foreach ($cats as $cat)
|
||||
{
|
||||
if ( !isset( $cat['id_uppercat'] ) )
|
||||
|
||||
Reference in New Issue
Block a user