projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb52c15
)
Revert "Time::HiRes um Zeit Stats im Footer anzuzeigen."
author
Sven Schöling
<s.schoeling@linet-services.de>
Fri, 30 Oct 2009 15:38:14 +0000
(16:38 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Fri, 30 Oct 2009 15:40:32 +0000
(16:40 +0100)
This reverts commit
cf1549160f886c37b4ee53b875c19304d1cdce90
.
Zeitinfo wurde auch bei Ajax Aufrufen angezeigt, was nicht sein darf.
am.pl
patch
|
blob
|
history
diff --git
a/am.pl
b/am.pl
index
0df3027
..
a70e452
100755
(executable)
--- a/
am.pl
+++ b/
am.pl
@@
-32,15
+32,9
@@
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