diff options
author | plegall <plg@piwigo.org> | 2011-12-30 21:25:32 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-12-30 21:25:32 +0000 |
commit | 0184ddb3b9cd99ad745972cb5a3c05de2239c8d4 (patch) | |
tree | cd8effbe26a778db83a3818d7df292957013df35 /include | |
parent | c9f58763dcb89bb8e36765d20903b11f1a7e1bff (diff) |
merge r12809 from branch 2.3 to trunk
bug 2543 fixed: the representative_picture_id was missing in the SQL query for pwg.categories.getList
git-svn-id: http://piwigo.org/svn/trunk@12810 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/ws_functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 3213beb1c..5839ce9e9 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -497,7 +497,7 @@ function ws_categories_getList($params, &$service) SELECT id, name, permalink, uppercats, global_rank, id_uppercat, comment, nb_images, count_images AS total_nb_images, - user_representative_picture_id, count_images, count_categories, + representative_picture_id, user_representative_picture_id, count_images, count_categories, date_last, max_date_last, count_categories AS nb_categories FROM '.CATEGORIES_TABLE.' '.$join_type.' JOIN '.USER_CACHE_CATEGORIES_TABLE.' ON id=cat_id AND user_id='.$join_user.' |