diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-07-11 15:45:04 +0200 |
---|---|---|
committer | Mary Umoh <umohm12@gmail.com> | 2017-07-11 15:45:04 +0200 |
commit | e5eba5172d527a74c60319ff5c7eb5d0d3bc9cd3 (patch) | |
tree | 7918100491ede27c8d0e1e2653253de6a42b5a0c /template/en/default | |
parent | 4462c8562571ec06fdf6ac2dbb5f171ce7e7c90e (diff) | |
download | bugzilla-e5eba5172d527a74c60319ff5c7eb5d0d3bc9cd3.tar.gz bugzilla-e5eba5172d527a74c60319ff5c7eb5d0d3bc9cd3.tar.xz |
No Bug - clean trailing whitespace to t/008filter.t passes again (#135)
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/time.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/bug/time.html.tmpl b/template/en/default/bug/time.html.tmpl index c58675b96..9bfabe6d5 100644 --- a/template/en/default/bug/time.html.tmpl +++ b/template/en/default/bug/time.html.tmpl @@ -22,7 +22,7 @@ [% BLOCK formattimeunit %] [%# INTERFACE: # time_unit: the number converting, converts to 2 decimal places - # unless the last character is a 0, then it truncates to + # unless the last character is a 0, then it truncates to # 1 decimal place #%] [% time_unit = time_unit FILTER format('%.2f') %] @@ -31,11 +31,11 @@ [% BLOCK calculatepercentage %] [%# INTERFACE: - # act: actual time + # act: actual time # rem: remaining time # %] [% IF (act + rem) > 0 %] - [% (act / (act + rem)) * 100 + [% (act / (act + rem)) * 100 FILTER format("%d") %] [% ELSE %] 0 |