X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/84497798a93953681eec330e3fc98068adbff4d4..refs/heads/master:/selfforum-cgi/shared/Time/German.pm diff --git a/selfforum-cgi/shared/Time/German.pm b/selfforum-cgi/shared/Time/German.pm index 52d7153..86d9123 100644 --- a/selfforum-cgi/shared/Time/German.pm +++ b/selfforum-cgi/shared/Time/German.pm @@ -4,20 +4,35 @@ package Time::German; # # # File: shared/Time/German.pm # # # -# Authors: Andre Malo , 2001-06-10 # +# Authors: André Malo # # # # Description: determine time offset German Time <=> GMT (seconds) # # # ################################################################################ use strict; +use vars qw( + @EXPORT_OK + %EXPORT_TAGS +); + +################################################################################ +# +# Version check +# +# last modified: +# $Date$ (GMT) +# by $Author$ +# +sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'} ################################################################################ # # Export # use base 'Exporter'; -@Time::German::EXPORT = qw(germantime); +@EXPORT_OK = qw(localtime); +%EXPORT_TAGS = (overwrite_internal_localtime => 'localtime'); # ;-)) Thanks to Calocybe ################################################################################ # @@ -42,7 +57,7 @@ my %summertime = ( 95 => [84, 266] ); -### germantime () ############################################################## +### localtime () ############################################################### # # like 'localtime', but system independent # @@ -50,7 +65,7 @@ my %summertime = ( # # Return: same as localtime, but german time ;-) # -sub germantime (;$) { +sub localtime (;$) { my $time = shift; $time = time unless defined $time;