diff options
-rw-r--r-- | LedgerSMB/OE.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/OE.pm b/LedgerSMB/OE.pm index c6b9e960..e274cc03 100644 --- a/LedgerSMB/OE.pm +++ b/LedgerSMB/OE.pm @@ -2207,7 +2207,7 @@ sub add_items_required { JOIN parts p ON (p.id = a.parts_id) WHERE a.id = ?|; $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); + $sth->execute($parts_id) || $form->dberror($query); while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) { $form->db_parse_numeric(sth=> $sth, hashref=> $ref); |