diff options
author | jocuri%softhome.net <> | 2004-08-28 17:58:13 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-08-28 17:58:13 +0200 |
commit | 26640251cc8ace3a5fea3b6af121533150d8eed8 (patch) | |
tree | 735a76c0d51ab96c22360f64d0e4f0fde3b21ac2 /template | |
parent | 1dff25eca7b5c489e0807cb8fd595c773bbfd4f5 (diff) | |
download | bugzilla-26640251cc8ace3a5fea3b6af121533150d8eed8.tar.gz bugzilla-26640251cc8ace3a5fea3b6af121533150d8eed8.tar.xz |
Patch for bug 248613: Custom global default platform/OS in non-usebrowserinfo scenarios; patch by Marc Schumann <marcschum@web.de>; r=kiko, a=myk.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index ecb3dd8c9..816b90038 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -321,13 +321,20 @@ function set_assign_to() { </td> </tr> -[% IF Param('usebrowserinfo') %] +[% UNLESS (Param('defaultplatform') && Param('defaultopsys')) %] <tr> <td></td> <td colspan="3"> <br> - We've made a guess at your operating system and platform. - Please check them and, if we got it wrong, email + We've made a guess at your + [% IF Param('defaultplatform') %] + operating system. Please check it + [% ELSIF Param('defaultopsys') %] + platform. Please check it + [% ELSE %] + operating system and platform. Please check them + [% END %] + and, if we got it wrong, email [%+ Param('maintainer') %]. </td> </tr> |