Revision ef17e41a
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
SL/LICENSES.pm | ||
---|---|---|
69 | 69 |
$sth->finish(); |
70 | 70 |
|
71 | 71 |
if ($form->{own_product}) { |
72 |
$form->update_balance($dbh, "parts", "onhand", qq|id = $form->{parts_id}|,
|
|
73 |
1); |
|
72 |
$form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
|
|
73 |
1, $form->{parts_id});
|
|
74 | 74 |
} |
75 | 75 |
|
76 | 76 |
$dbh->disconnect(); |
Auch abrufbar als: Unified diff
Umstellung der Form.pm auf die Verwendung parametrisierter Queries zur Vermeidung von SQL injection. Zusätzlich etwas Kosmetik (trailing whitespace, TABs entfernt).