X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/50d4e173c45376a21561a87e1798a2644d08ebfb..8ee59d9d7ce698dc48659f95f1d7e90953117b48:/selfforum-cgi/shared/Arc/Test.pm?ds=sidebyside diff --git a/selfforum-cgi/shared/Arc/Test.pm b/selfforum-cgi/shared/Arc/Test.pm index 6851912..b2706f3 100644 --- a/selfforum-cgi/shared/Arc/Test.pm +++ b/selfforum-cgi/shared/Arc/Test.pm @@ -4,20 +4,33 @@ package Arc::Test; # # # File: shared/Arc/Test.pm # # # -# Authors: Andre Malo , 2001-04-27 # +# Authors: André Malo # # # # Description: check on obsolete threads # # # ################################################################################ use strict; +use vars qw( + @EXPORT +); + +################################################################################ +# +# Version check +# +# last modified: +# $Date$ (GMT) +# by $Author$ +# +sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'} ################################################################################ # # Export # use base qw(Exporter); -@Arc::Test::EXPORT = qw(get_obsolete_threads); +@EXPORT = qw(get_obsolete_threads); ### sub get_obsolete_threads ($) ############################################### # @@ -110,7 +123,7 @@ sub get_obsolete_threads ($) { [sort {$a <=> $b} splice @sorted => 0, $obsolete]; } -# keep require happy +# keep 'require' happy 1; #