diff options
author | lpsolit%gmail.com <> | 2009-11-10 17:31:47 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-11-10 17:31:47 +0100 |
commit | 2f804027b44c5790d4547f3161bff28266150bef (patch) | |
tree | a5d9fff8ab4b48d71bea0157bfa3f856fc437b7c /template/en/default/list | |
parent | f7b1e5c5e27780f4bb1be7c9a44f1a91024473e4 (diff) | |
download | bugzilla-2f804027b44c5790d4547f3161bff28266150bef.tar.gz bugzilla-2f804027b44c5790d4547f3161bff28266150bef.tar.xz |
Bug 505039: Use $user->is_timetracker instead of $user->in_group(Bugzilla->params->{'timetrackinggroup'}) - Patch by XqueZme <xquezme@gmail.com> r/a=LpSolit
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/list/list.html.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 05d534976..528d1bd68 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -140,7 +140,7 @@ <th><label for="bug_status">Status:</label></th> <td colspan="3">[% PROCESS status_section %]</td> </tr> - [% IF user.in_group(Param("timetrackinggroup")) %] + [% IF user.is_timetracker %] <tr> <th><label for="estimated_time">Estimated Hours:</label></th> <td> diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index a3e3a767a..6d7f80585 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -198,7 +198,7 @@ <input type="submit" value="XML" id="xml"> </form> - [% IF user.in_group(Param('timetrackinggroup')) %] + [% IF user.is_timetracker %] <form method="post" action="summarize_time.cgi"> <input type="hidden" name="id" value="[% buglist_joined FILTER html %]"> <input type="submit" id="timesummary" value="Time Summary"> |