diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-17 15:49:36 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-17 15:49:36 +0000 |
commit | 428586fcfca4becd89880e47efe292f31f58ce5a (patch) | |
tree | 0cd826577b64194952ac9778a8070e4d977a983b /LedgerSMB | |
parent | 0c7424b49f2857d9f615754bb6672bc312eb3ad1 (diff) |
Fixed bugs regarding run_custom_queries and new logins.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@221 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-x | LedgerSMB/AM.pm | 6 | ||||
-rwxr-xr-x | LedgerSMB/IC.pm | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/LedgerSMB/AM.pm b/LedgerSMB/AM.pm index 82b58534..be9e47fe 100755 --- a/LedgerSMB/AM.pm +++ b/LedgerSMB/AM.pm @@ -77,7 +77,7 @@ sub get_account { LIMIT 1|; $sth = $dbh->prepare($query); $sth->execute($form->{id}); - ($form->{orphaned}) = $dbh->fetchrow_array(); + ($form->{orphaned}) = $sth->fetchrow_array(); $form->{orphaned} = !$form->{orphaned}; $dbh->commit; @@ -140,7 +140,7 @@ sub save_account { category = ?, link = ?, contra = ? - WHERE id = $form->{id}|; + WHERE id = ?|; push @queryargs, $form->{id}; } else { $query = qq| @@ -165,7 +165,7 @@ sub save_account { $sth = $dbh->prepare($query); $sth->execute($form->{accno}); - ($chart_id) = $sth->fetchrow_array($query); + ($chart_id) = $sth->fetchrow_array(); $sth->finish; } diff --git a/LedgerSMB/IC.pm b/LedgerSMB/IC.pm index 0da7dd60..c5ff74f6 100755 --- a/LedgerSMB/IC.pm +++ b/LedgerSMB/IC.pm @@ -199,7 +199,7 @@ sub get_part { $sth->finish; } - $form->get_custom_queries('parts', 'SELECT'); + $form->run_custom_queries('parts', 'SELECT'); } @@ -493,7 +493,7 @@ sub save { my $rc = $dbh->commit; $dbh->disconnect; - $form->get_custom_queries('parts', 'UPDATE'); + $form->run_custom_queries('parts', 'UPDATE'); $rc; } |