diff options
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index fd93d1dff..367a0c4be 100644 --- a/mod/item.php +++ b/mod/item.php @@ -689,7 +689,8 @@ function item_post(&$a) { $post_id = 0; - $post_id = item_store($datarray,$execflag); + $post = item_store($datarray,$execflag); + $post_id = $post['item_id']; if($post_id) { logger('mod_item: saved item ' . $post_id); |