diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-15 01:59:32 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-15 01:59:32 +0000 |
commit | 2e635d24bbfad9615e2e533a323ed3e73e6f9131 (patch) | |
tree | 0a0d20634bf791003b1b6122a6bc98529f532929 /LedgerSMB | |
parent | 0825af53ea040e53372aa3ea475a658eb6d3eb22 (diff) |
Correcting the Form.pm to use no strict 'subs'
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1607 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB')
-rw-r--r-- | LedgerSMB/Form.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index 99a41184..0a36f6f8 100644 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -86,7 +86,7 @@ $form->error may be called to deny access on some attribute values. sub new { # Without the line below, we get unknown errors. I guess this is an # indication of why this module is deprecated :-)-- CT - no strict; + no strict 'subs'; my $type = shift; |