summaryrefslogtreecommitdiff
path: root/rt/html/RTx/Statistics/DurationAsString
diff options
context:
space:
mode:
authorcvs2git <cvs2git>2008-03-16 19:58:34 +0000
committercvs2git <cvs2git>2008-03-16 19:58:34 +0000
commiteb061f5119325e666f0dff40d4089e5c1df58e17 (patch)
treed55e8fef5aca62eb13bbc8ad20dbdf941c3bd266 /rt/html/RTx/Statistics/DurationAsString
parent3a17b276638200475d54201fa62566b7440e819a (diff)
This commit was manufactured by cvs2svn to create tag 'TRIXBOX_2_6'.TRIXBOX_2_6
Diffstat (limited to 'rt/html/RTx/Statistics/DurationAsString')
-rwxr-xr-xrt/html/RTx/Statistics/DurationAsString18
1 files changed, 0 insertions, 18 deletions
diff --git a/rt/html/RTx/Statistics/DurationAsString b/rt/html/RTx/Statistics/DurationAsString
deleted file mode 100755
index c0b4d9a..0000000
--- a/rt/html/RTx/Statistics/DurationAsString
+++ /dev/null
@@ -1,18 +0,0 @@
-<%$days|'00'%> days <%$hours|'00'%>:<%$minutes|'00'%>
-<%INIT>
-
-my $MINUTE = 60;
-my $HOUR = $MINUTE*60;
-my $DAY = $HOUR * 24;
-my $WEEK = $DAY * 7;
-my $days = int($Duration / $DAY);
-$Duration = $Duration % $DAY;
-my $hours = int($Duration / $HOUR);
-$hours = sprintf("%02d", $hours);
-$Duration = $Duration % $HOUR;
-my $minutes = int($Duration/$MINUTE);
-$minutes = sprintf("%02d", $minutes);
-</%INIT>
-<%ARGS>
-$Duration => undef
-</%ARGS>