mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-12 11:43:01 +02:00
- minor sql query optimizations
git-svn-id: http://piwigo.org/svn/trunk@2308 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -49,7 +49,8 @@ SELECT tag_id, COUNT(DISTINCT(it.image_id)) counter
|
||||
'
|
||||
WHERE'
|
||||
).'
|
||||
GROUP BY tag_id';
|
||||
GROUP BY tag_id
|
||||
ORDER BY NULL';
|
||||
$tag_counters = simple_hash_from_query($query, 'tag_id', 'counter');
|
||||
|
||||
if ( empty($tag_counters) )
|
||||
@@ -243,6 +244,11 @@ SELECT id, name, url_name, count(*) counter
|
||||
ORDER BY counter DESC
|
||||
LIMIT 0,'.$max_tags;
|
||||
}
|
||||
else
|
||||
{
|
||||
$query .= '
|
||||
ORDER BY NULL';
|
||||
}
|
||||
|
||||
$result = pwg_query($query);
|
||||
$tags = array();
|
||||
|
||||
Reference in New Issue
Block a user