Revision 879070c7
Von Sven Schöling vor etwa 15 Jahren hinzugefügt
SL/OE.pm | ||
---|---|---|
976 | 976 |
my $oe_query = qq|SELECT * FROM oe WHERE id = ?|; |
977 | 977 |
my $oi_query = qq|SELECT * FROM orderitems WHERE trans_id = ?|; |
978 | 978 |
|
979 |
my ($order) = selectall_array_query($form, $dbh, $oe_query, conv_i($params{id}));
|
|
980 |
$order->{orderitems} = selectall_array_query($form, $dbh, $oi_query, conv_i($params{id}));
|
|
979 |
my $order = selectfirst_hashref_query($form, $dbh, $oe_query, conv_i($params{id}));
|
|
980 |
$order->{orderitems} = selectall_hashref_query( $form, $dbh, $oi_query, conv_i($params{id}));
|
|
981 | 981 |
|
982 | 982 |
$main::lxdebug->leave_sub(); |
983 | 983 |
|
Auch abrufbar als: Unified diff
Bugfix: selectall_HASHREF!