summaryrefslogtreecommitdiff
path: root/LedgerSMB/Form.pm
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-15 01:59:32 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-15 01:59:32 +0000
commit2e635d24bbfad9615e2e533a323ed3e73e6f9131 (patch)
tree0a0d20634bf791003b1b6122a6bc98529f532929 /LedgerSMB/Form.pm
parent0825af53ea040e53372aa3ea475a658eb6d3eb22 (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/Form.pm')
-rw-r--r--LedgerSMB/Form.pm2
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;