diff options
author | plegall <plg@piwigo.org> | 2004-12-05 21:35:04 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-12-05 21:35:04 +0000 |
commit | 964f9774015525f3cfe4e10509744f6c4494e782 (patch) | |
tree | 27470e45aa432d3b039ed32714b8c7767cf1b4a8 | |
parent | 9064686d9990b6830c0cd6a00d95745d3841eb9e (diff) |
bug fix on typo
git-svn-id: http://piwigo.org/svn/trunk@636 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/functions_category.inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php index 7542e337a..0a718b79e 100644 --- a/include/functions_category.inc.php +++ b/include/functions_category.inc.php @@ -580,12 +580,12 @@ SELECT COUNT(DISTINCT(id)) AS nb_total_images $page['where'].= date( 'Y-m-d', $date )."'"; if ( isset( $forbidden ) ) $page['where'].= ' AND '.$forbidden; - $query = 'SELECT COUNT(DISTINCT(id)) AS nb_total_images'; - $query.= ' FROM '.IMAGES_TABLE; - $query.= ' INNER JOIN '.IMAGE_CATEGORY_TABLE.'AS ic'; - $query.= ' ON id = ic.image_id'; - $query.= $page['where']; - $query.= ';'; + $query = ' +SELECT COUNT(DISTINCT(id)) AS nb_total_images + FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic + ON id = ic.image_id + '.$page['where'].' +;'; } // categories containing recent pictures else if ( $page['cat'] == 'recent_cats' ) |