diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-30 20:04:34 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-30 20:04:34 +0000 |
commit | 0ec77acf9bda54bedece732f85e8071fe11524d7 (patch) | |
tree | 04d61a494924e62f2d618ff134732ba252a935b7 /LedgerSMB | |
parent | 397c0451508646eda7a34b0f9a7f0d95e544d9f6 (diff) |
Adjust INSERTs to audittrail to have correct number of fields
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@708 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-x | LedgerSMB/Form.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index 299efb9d..ae49ae0c 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -3071,7 +3071,7 @@ sub audittrail { trans_id, tablename, reference, formname, action, employee_id, transdate) - VALUES (?, ?, ?, ?, ?, ?)|; + VALUES (?, ?, ?, ?, ?, ?, ?)|; @queryargs = ( $audittrail->{id}, $audittrail->{tablename}, @@ -3086,7 +3086,7 @@ sub audittrail { INSERT INTO audittrail (trans_id, tablename, reference, formname, action, employee_id) - VALUES (?, ?, ?, ?, ?)|; + VALUES (?, ?, ?, ?, ?, ?)|; @queryargs = ( $audittrail->{id}, $audittrail->{tablename}, |