diff options
author | lpsolit%gmail.com <> | 2007-05-10 21:42:23 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-05-10 21:42:23 +0200 |
commit | a43f35c27c4c233d2a8f3461d231cd299a648b93 (patch) | |
tree | 3c5db3f3d44040c7ee9f06b320e0726eacee8da8 /template/en/default | |
parent | 741e6ebb58bade895c51f7b6fe4d674e9a2dc451 (diff) | |
download | bugzilla-a43f35c27c4c233d2a8f3461d231cd299a648b93.tar.gz bugzilla-a43f35c27c4c233d2a8f3461d231cd299a648b93.tar.xz |
Bug 311982: Remove useless quotes when displaying the milestone URL - Patch by Frédéric Buclin <LpSolit@gmail.com> a=LpSolit
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/admin/products/updated.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/admin/products/updated.html.tmpl b/template/en/default/admin/products/updated.html.tmpl index 372f15805..1a6e25997 100644 --- a/template/en/default/admin/products/updated.html.tmpl +++ b/template/en/default/admin/products/updated.html.tmpl @@ -97,13 +97,13 @@ <p> Updated milestone URL [% IF old_product.milestone_url != '' %] - from<br> <a href="[%- old_product.milestone_url FILTER html %]">' - [%- old_product.milestone_url FILTER html %]'</a> + from<br> <a href="[%- old_product.milestone_url FILTER html %]"> + [%- old_product.milestone_url FILTER html %]</a> [% END %] to [% IF product.milestone_url != '' %] - <br><a href="[%- product.milestone_url FILTER html %]">' - [%- product.milestone_url FILTER html %]'</a>. + <br><a href="[%- product.milestone_url FILTER html %]"> + [%- product.milestone_url FILTER html %]</a>. [% ELSE %] be empty. [% END %] |