diff options
author | plegall <plg@piwigo.org> | 2006-04-04 22:29:35 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-04 22:29:35 +0000 |
commit | d8c15ddf65ba90a8853504420a8d4839450ad4b0 (patch) | |
tree | f287793690ce347fc5ad3b7fc73b892f3f818b96 /admin/include/functions_metadata.php | |
parent | f33fdc91b2a5cb4ce0681df52b37ca5781660503 (diff) |
feature deleted: code for categories link was too complicated for such a
simple fature. Replaced by static association. Links are not persistent
anymore.
modification removed: #image_category.is_storage replaced by
#images.storage_category_id as in branche 1.5..
git-svn-id: http://piwigo.org/svn/trunk@1121 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/functions_metadata.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/admin/include/functions_metadata.php b/admin/include/functions_metadata.php index 21897c2cd..d4324a763 100644 --- a/admin/include/functions_metadata.php +++ b/admin/include/functions_metadata.php @@ -246,9 +246,7 @@ SELECT id $query = ' SELECT id, path FROM '.IMAGES_TABLE.' - INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON image_id = id - WHERE is_storage = \'true\' - AND category_id IN ('.implode(',', $cat_ids).')'; + WHERE storage_category_id IN ('.implode(',', $cat_ids).')'; if ($only_new) { $query.= ' |