diff options
author | lpsolit%gmail.com <> | 2006-07-06 11:18:28 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-06 11:18:28 +0200 |
commit | 5e55e7bc89682617a14d5fbc3b6098c12ce1aece (patch) | |
tree | 4fbca1cb235c0f3cdc97f557eb2cc15265c9a2e4 | |
parent | f06ff14577707a46de368d954c44df4e8ad21a1d (diff) | |
download | bugzilla-5e55e7bc89682617a14d5fbc3b6098c12ce1aece.tar.gz bugzilla-5e55e7bc89682617a14d5fbc3b6098c12ce1aece.tar.xz |
Bug 343702: editflagtypes.cgi: Argument "" isn't numeric in numeric gt (>) at template/en/default/request/email.txt.tmpl line 155 - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
-rw-r--r-- | template/en/default/request/email.txt.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/request/email.txt.tmpl b/template/en/default/request/email.txt.tmpl index 3fb08c447..ac6de50ad 100644 --- a/template/en/default/request/email.txt.tmpl +++ b/template/en/default/request/email.txt.tmpl @@ -60,7 +60,7 @@ Attachment [% attidsummary %] [%- FILTER bullet = wrap(80) %] [% USE Bugzilla %] -[% IF Bugzilla.cgi.param("comment").length > 0 %] +[% IF Bugzilla.cgi.param("comment") && Bugzilla.cgi.param("comment").length > 0 %] ------- Additional Comments from [% user.identity %] [%+ Bugzilla.cgi.param("comment") %] [% END %] |