# #
# File: shared/Time/German.pm #
# #
-# Authors: Andre Malo <nd@o3media.de>, 2001-06-10 #
+# Authors: André Malo <nd@o3media.de> #
# #
# 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
################################################################################
#
95 => [84, 266]
);
-### germantime () ##############################################################
+### localtime () ###############################################################
#
# like 'localtime', but system independent
#
#
# Return: same as localtime, but german time ;-)
#
-sub germantime (;$) {
+sub localtime (;$) {
my $time = shift;
$time = time unless defined $time;