bug fixed: I had forgotten to re-add storage_category_id in the list of
fields to insert in #images. To avoid future mistakes, I extract automatically all keys of the first array to insert. git-svn-id: http://piwigo.org/svn/trunk@1122 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
d8c15ddf65
commit
bc6358dfc2
1 changed files with 2 additions and 7 deletions
|
@ -538,19 +538,14 @@ SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1) AS next_element_id
|
|||
// inserts all new elements
|
||||
mass_inserts(
|
||||
IMAGES_TABLE,
|
||||
array(
|
||||
'id', 'file', 'date_available', 'tn_ext', 'representative_ext',
|
||||
'has_high', 'path',
|
||||
),
|
||||
array_keys($inserts[0]),
|
||||
$inserts
|
||||
);
|
||||
|
||||
// inserts all links between new elements and their storage category
|
||||
mass_inserts(
|
||||
IMAGE_CATEGORY_TABLE,
|
||||
array(
|
||||
'image_id','category_id',
|
||||
),
|
||||
array_keys($insert_links[0]),
|
||||
$insert_links
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue