From 2bd57ce8e6f2c2bb59a99d825fc9d181ea2cb4a5 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sun, 27 May 2007 03:27:45 +0000 Subject: =?UTF-8?q?Bug=20344965:=20Fix=20process=5Fbug.cgi=20and=20bug/*?= =?UTF-8?q?=20templates=20to=20work=20with=20custom=20bug=20status=20workf?= =?UTF-8?q?low=20-=20Patch=20by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin?= =?UTF-8?q?=20=20r=3Dmkanat=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/en/default/admin/workflow/edit.html.tmpl | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'template/en/default/admin/workflow/edit.html.tmpl') diff --git a/template/en/default/admin/workflow/edit.html.tmpl b/template/en/default/admin/workflow/edit.html.tmpl index dee71c0a1..d602171a1 100644 --- a/template/en/default/admin/workflow/edit.html.tmpl +++ b/template/en/default/admin/workflow/edit.html.tmpl @@ -34,8 +34,12 @@

- This page allows you to define which status transitions are valid - in your workflow. + This page allows you to define which status transitions are valid in your workflow. + For compatibility with older versions of [% terms.Bugzilla %], reopening [% terms.abug %] + will only display either UNCONFIRMED or REOPENED (if allowed by your workflow) but not + both. The decision depends on whether the [% terms.bug %] has ever been confirmed or not. + So it is a good idea to allow both transitions and let [% terms.Bugzilla %] select the + correct one.

@@ -50,24 +54,24 @@   [% FOREACH status = statuses %] - [% status.value FILTER html %] + [% status.name FILTER html %] [% END %] [%# This defines the entry point in the workflow %] - [% p = [{id => 0, value => "{Start}", is_open => 1}] %] + [% p = [{id => 0, name => "{Start}", is_open => 1}] %] [% FOREACH status = p.merge(statuses) %] - [% status.value FILTER html %] + [% status.name FILTER html %] [% FOREACH new_status = statuses %] [% IF status.id != new_status.id %] + title="From [% status.name FILTER html %] to [% new_status.name FILTER html %]"> -- cgit v1.2.1