]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/shared/Time/German.pm
now severancer will be splittet from cgi application, fo_posting.pl uses now Arc...
[selfforum.git] / selfforum-cgi / shared / Time / German.pm
index 52d715318f25b4ae0491b67d0bc9629dc50051da..f89599c936e792ae93c63c5f37cbbd6606359291 100644 (file)
@@ -11,13 +11,25 @@ package Time::German;
 ################################################################################
 
 use strict;
+use vars qw(
+  @EXPORT_OK
+  %EXPORT_TAGS
+  $VERSION
+);
+
+################################################################################
+#
+# Version check
+#
+$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 
 ################################################################################
 #
 # Export
 #
 use base 'Exporter';
-@Time::German::EXPORT = qw(germantime);
+@EXPORT_OK   = qw(localtime);
+%EXPORT_TAGS = (overwrite_internal_localtime => 'localtime'); # ;-)) Thanks to Calocybe
 
 ################################################################################
 #
@@ -42,7 +54,7 @@ my %summertime = (
   95 => [84, 266]
 );
 
-### germantime () ##############################################################
+### localtime () ###############################################################
 #
 # like 'localtime', but system independent
 #
@@ -50,7 +62,7 @@ my %summertime = (
 #
 # Return: same as localtime, but german time ;-)
 #
-sub germantime (;$) {
+sub localtime (;$) {
   my $time = shift;
   $time = time unless defined $time;
 

patrick-canterino.de