mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
Correcting a bug in special categories (favorites, most seen, most
recent... non numeric categories) : when a picture is linked to more than one category, it's only displayed once. git-svn-id: http://piwigo.org/svn/trunk@64 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -493,9 +493,9 @@ function initialize_category( $calling_page = 'category' )
|
||||
{
|
||||
$page['title'] = $lang['favorites'];
|
||||
|
||||
$page['where'] = ', '.PREFIX_TABLE.'favorites';
|
||||
$page['where'] = ', '.PREFIX_TABLE.'favorites AS fav';
|
||||
$page['where'].= ' WHERE user_id = '.$user['id'];
|
||||
$page['where'].= ' AND image_id = id';
|
||||
$page['where'].= ' AND fav.image_id = id';
|
||||
|
||||
$query = 'SELECT COUNT(*) AS nb_total_images';
|
||||
$query.= ' FROM '.PREFIX_TABLE.'favorites';
|
||||
|
||||
Reference in New Issue
Block a user