mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 18:01:31 +02:00
- bug fixed : if an element is linked more than once, bug on count of total
elements of best rated category git-svn-id: http://piwigo.org/svn/trunk@676 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -665,7 +665,7 @@ SELECT COUNT(DISTINCT(id)) AS nb_total_images
|
||||
// $page['cat_nb_images'] equals $conf['top_number'] unless there
|
||||
// are less rated items
|
||||
$query ='
|
||||
SELECT COUNT(1) AS count
|
||||
SELECT COUNT(DISTINCT(id)) AS count
|
||||
FROM '.IMAGES_TABLE.'
|
||||
INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
|
||||
'.$page['where'].'
|
||||
|
||||
Reference in New Issue
Block a user