diff options
Diffstat (limited to 'LedgerSMB/Location.pm')
-rw-r--r-- | LedgerSMB/Location.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LedgerSMB/Location.pm b/LedgerSMB/Location.pm index 69403a7b..05b38094 100644 --- a/LedgerSMB/Location.pm +++ b/LedgerSMB/Location.pm @@ -32,12 +32,14 @@ your software. package LedgerSMB::Location; use LedgerSMB; use LedgerSMB::DBObject; +use strict; our $VERSION = '1.0.0'; our @ISA = qw(LedgerSMB::DBObject); sub AUTOLOAD { my $self = shift; + my $AUTOLOAD = $LedgerSMB::Location::AUTOLOAD; $AUTOLOAD =~ s/^.*:://; my $procname = "location_$AUTOLOAD"; $self->exec_method($procname, @_); |