mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 01:32:59 +02:00
coding guideline: replace tabs by spaces
git-svn-id: http://piwigo.org/svn/trunk@12295 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -540,11 +540,14 @@ $template->assign(
|
||||
|
||||
if (!empty($_SESSION['bulk_manager_filter']['tags']))
|
||||
{
|
||||
$query = '
|
||||
SELECT id, name
|
||||
FROM '.TAGS_TABLE.'
|
||||
WHERE id IN ('.implode(',', $_SESSION['bulk_manager_filter']['tags']).')';
|
||||
$template->assign('filter_tags', get_taglist($query));
|
||||
$query = '
|
||||
SELECT
|
||||
id,
|
||||
name
|
||||
FROM '.TAGS_TABLE.'
|
||||
WHERE id IN ('.implode(',', $_SESSION['bulk_manager_filter']['tags']).')
|
||||
;';
|
||||
$template->assign('filter_tags', get_taglist($query));
|
||||
}
|
||||
|
||||
// Virtualy associate a picture to a category
|
||||
|
||||
Reference in New Issue
Block a user