]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/shared/Time/German.pm
German.pm: added version check, turned 'germantime' to 'localtime'. Time::German...
[selfforum.git] / selfforum-cgi / shared / Time / German.pm
index 52d715318f25b4ae0491b67d0bc9629dc50051da..2e323d0dbffd6c5d41a1570e52da496c246d17cd 100644 (file)
@@ -11,13 +11,23 @@ package Time::German;
 ################################################################################
 
 use strict;
+use vars qw(
+  @EXPORT
+  $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 = qw(localtime);
 
 ################################################################################
 #
@@ -42,7 +52,7 @@ my %summertime = (
   95 => [84, 266]
 );
 
-### germantime () ##############################################################
+### localtime () ###############################################################
 #
 # like 'localtime', but system independent
 #
@@ -50,7 +60,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