Revert "Time::HiRes um Zeit Stats im Footer anzuzeigen."
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 30 Oct 2009 15:38:14 +0000 (16:38 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Fri, 30 Oct 2009 15:38:14 +0000 (16:38 +0100)
This reverts commit cf1549160f886c37b4ee53b875c19304d1cdce90.

Zeitinfo wurde auch bei Ajax Aufrufen angezeigt, was nicht sein darf.

am.pl

diff --git a/am.pl b/am.pl
index 0df3027..a70e452 100755 (executable)
--- a/am.pl
+++ b/am.pl
 
 use strict;
 
-use Time::HiRes qw(gettimeofday tv_interval);
-
-my $time;
-
 BEGIN {
   unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
   push    @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
-
-  $time = [gettimeofday];
 }
 
 # setup defaults, DO NOT CHANGE
@@ -178,8 +172,5 @@ sub _show_error {
   exit;
 }
 
-END {
-  print "<!-- time elapsed: ", tv_interval($time), "s -->";
-}
 # end