]> wagnertech.de Git - mfinanz.git/blobdiff - SL/MoreCommon.pm
ReportGenerator: Beim der HTML-Ausgabe nur entweder raw_data oder data ausgeben;...
[mfinanz.git] / SL / MoreCommon.pm
index 6c292bab8446165cd0e8c3693c3d334e4f435e9a..e93dd172e155d9a64834157e65bd6d7a0bf06468 100644 (file)
@@ -1,15 +1,17 @@
 package SL::MoreCommon;
 
 require Exporter;
-@ISA = qw(Exporter);
+our @ISA = qw(Exporter);
 
-@EXPORT    = qw(save_form restore_form compare_numbers any cross);
-@EXPORT_OK = qw(ary_union ary_intersect ary_diff listify);
+our @EXPORT    = qw(save_form restore_form compare_numbers any cross);
+our @EXPORT_OK = qw(ary_union ary_intersect ary_diff listify);
 
 use YAML;
 
 use SL::AM;
 
+use strict;
+
 sub save_form {
   $main::lxdebug->enter_sub();
 
@@ -163,6 +165,5 @@ sub listify {
   my @ary = scalar @_ > 1 ? @_ : ref $_[0] eq 'ARRAY' ? @{ $_[0] } : (@_);
   return wantarray ? @ary : scalar @ary;
 }
-+
 
 1;