Revision ef17e41a
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
SL/IC.pm | ||
---|---|---|
795 | 795 |
$sth->finish; |
796 | 796 |
|
797 | 797 |
# update assembly |
798 |
my $rc = $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $qty);
|
|
798 |
my $rc = $form->update_balance($dbh, "parts", "onhand", qq|id = ?|, $qty, $id);
|
|
799 | 799 |
|
800 | 800 |
$main::lxdebug->leave_sub(); |
801 | 801 |
|
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).