- bug fixed: during file tree synchronization, warning on finding the next

rank of category which has no sub-categories yet.


git-svn-id: http://piwigo.org/svn/trunk@913 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2005-10-23 21:43:26 +00:00
parent da31f1fd2f
commit 953dada953
2 changed files with 17 additions and 1 deletions

View File

@@ -116,9 +116,21 @@ SELECT galleries_url
// we need to have fulldirs as keys to make efficient comparison
$db_fulldirs = array_flip($db_fulldirs);
// finding next rank for each id_uppercat
// finding next rank for each id_uppercat. By default, each category id
// has 1 for next rank on its sub-categories to create
$next_rank['NULL'] = 1;
$query = '
SELECT id
FROM '.CATEGORIES_TABLE.'
;';
$result = pwg_query($query);
while ($row = mysql_fetch_array($result))
{
$next_rank[$row['id']] = 1;
}
// let's see if some categories already have some sub-categories...
$query = '
SELECT id_uppercat, MAX(rank)+1 AS next_rank
FROM '.CATEGORIES_TABLE.'

View File

@@ -1,4 +1,8 @@
2005-10-23 Pierrick LE GALL
* bug fixed: during file tree synchronization, warning on finding
the next rank of category which has no sub-categories yet.
2005-10-23 chrisaga
* bug fixed: cat-list.tpl validate now