mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-01 20:04:51 +02:00
bug 2378 fixed: remove MySQL warning when synchronizing with simulation
activated. The warning occurs when there are new dircetories found. git-svn-id: http://piwigo.org/svn/branches/2.2@12011 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -312,16 +312,16 @@ SELECT id_uppercat, MAX(rank)+1 AS next_rank
|
||||
'visible','status','rank','global_rank'
|
||||
);
|
||||
mass_inserts(CATEGORIES_TABLE, $dbfields, $inserts);
|
||||
|
||||
// add default permissions to categories
|
||||
$category_ids = array();
|
||||
foreach ($inserts as $category)
|
||||
{
|
||||
$category_ids[] = $category['id'];
|
||||
}
|
||||
add_permission_on_category($category_ids, get_admins());
|
||||
}
|
||||
|
||||
// add default permissions to categories
|
||||
$category_ids = array();
|
||||
foreach ($inserts as $category)
|
||||
{
|
||||
$category_ids[] = $category['id'];
|
||||
}
|
||||
add_permission_on_category($category_ids, get_admins());
|
||||
|
||||
|
||||
$counts['new_categories'] = count($inserts);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user