diff options
author | lpsolit%gmail.com <> | 2006-11-28 03:25:41 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-11-28 03:25:41 +0100 |
commit | 563ef374a364affe51239bec9a9bbd94b5b2e4f7 (patch) | |
tree | 34070fbfc2fc7327d1b7aabce29381e31c8600d2 | |
parent | 7e97a6c2f0b9ed01dbda9d47194acaf043fbed75 (diff) | |
download | bugzilla-563ef374a364affe51239bec9a9bbd94b5b2e4f7.tar.gz bugzilla-563ef374a364affe51239bec9a9bbd94b5b2e4f7.tar.xz |
Bug 361877: Argument "" isn't numeric in numeric gt (>) at data/template/template/en/default/global/user-error.html.tmpl line 1526 - Patch by Frédéric Buclin <LpSolit@gmail.com> r=bkor a=justdave
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 83d4a0a16..983b0f8d4 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -504,7 +504,7 @@ You asked [% requestee.identity FILTER html %] for <code>[% flag_type.name FILTER html %]</code> on [% terms.bug %] [%+ bug_id FILTER html -%] - [% IF attach_id > 0 %], attachment [% attach_id FILTER html %][% END %], + [% IF attach_id && attach_id > 0 %], attachment [% attach_id FILTER html %][% END %], but that [% terms.bug %] has been restricted to users in certain groups, and the user you asked isn't in all the groups to which the [% terms.bug %] has been restricted. |