diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-09 23:10:41 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-09 23:10:41 +0200 |
commit | 89cf83ecf9ec62f82887569e71b22b39956aeb46 (patch) | |
tree | d7eb8a7f36fa65e9d0c489104747cde9512cdda9 /template/en/default | |
parent | b308699b2c0453392c86215cecc4fe508a0e1762 (diff) | |
download | bugzilla-89cf83ecf9ec62f82887569e71b22b39956aeb46.tar.gz bugzilla-89cf83ecf9ec62f82887569e71b22b39956aeb46.tar.xz |
Bug 622203 - Allow filing closed bugs via the WebService
r=dkl, a=mkanat
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/admin/workflow/edit.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 13 |
2 files changed, 10 insertions, 5 deletions
diff --git a/template/en/default/admin/workflow/edit.html.tmpl b/template/en/default/admin/workflow/edit.html.tmpl index 5f2b21263..7fdcb3577 100644 --- a/template/en/default/admin/workflow/edit.html.tmpl +++ b/template/en/default/admin/workflow/edit.html.tmpl @@ -68,7 +68,7 @@ </th> [% FOREACH new_status = statuses %] - [% IF status.id != new_status.id && (status.id || new_status.is_open) %] + [% IF status.id != new_status.id %] [% checked = workflow.${status.id}.${new_status.id}.defined ? 1 : 0 %] [% mandatory = (status.id && new_status.name == Param("duplicate_or_move_bug_status")) ? 1 : 0 %] <td align="center" class="checkbox-cell[% " checked" IF checked || mandatory %]" diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index dc0481a67..387a7df03 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -308,9 +308,10 @@ [% ELSIF error == "comment_required" %] [% title = "Comment Required" %] You have to specify a - [% IF old && new %] - <b>comment</b> when changing the status of [% terms.abug %] from - [%+ old.name FILTER html %] to [% new.name FILTER html %]. + [% IF old.defined && new.defined %] + <b>comment</b> when changing the [% field_descs.$field FILTER html %] + of [% terms.abug %] from [% (old || "(empty)") FILTER html %] + to [% (new || "(empty)") FILTER html %]. [% ELSIF new %] description for this [% terms.bug %]. [% ELSE %] @@ -1527,7 +1528,11 @@ [% ELSIF error == "still_unresolved_bugs" %] [% title = "Unresolved Dependencies" %] - [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %] + [% IF bug_id %] + [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %] + [% ELSE %] + This [% terms.bug %] + [% END %] has [% dep_count FILTER none %] unresolved [% IF dep_count == 1 %] dependency |