summaryrefslogtreecommitdiff
path: root/LedgerSMB/Form.pm
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-21 18:58:25 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-21 18:58:25 +0000
commit3dea2401927c9ccd10ef8c11505abbab49297c7f (patch)
tree87e537f39142e320a5f1cc1ba688f56a4e0009cb /LedgerSMB/Form.pm
parent40ca34593f24b6a77ad9bdeb64be17fc5d2d8bf1 (diff)
Fixed error updating custom fields and another error saving project not attached to customer
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1291 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB/Form.pm')
-rwxr-xr-xLedgerSMB/Form.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm
index 87648020..6c3d3d5a 100755
--- a/LedgerSMB/Form.pm
+++ b/LedgerSMB/Form.pm
@@ -1537,7 +1537,7 @@ sub run_custom_queries {
if ( $query_type eq 'UPDATE' ) {
$query = "DELETE FROM $_ WHERE row_id = ?";
my $sth = $dbh->prepare($query);
- $sth->execute->( $self->{ "id" . "$linenum" } )
+ $sth->execute( $self->{ "id" . "$linenum" } )
|| $self->dberror($query);
}
elsif ( $query_type eq 'INSERT' ) {