diff options
author | mkanat%bugzilla.org <> | 2008-02-09 06:18:59 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-02-09 06:18:59 +0100 |
commit | 02c618aacd7f1b4683b73e93fa063d4db9e02fcd (patch) | |
tree | 14bdc1d7b4395f686e2e3602a2e3a13d70fbf519 /template/en/default/bug | |
parent | fad558c794527a2c0bd32b378917be0fc27e453f (diff) | |
download | bugzilla-02c618aacd7f1b4683b73e93fa063d4db9e02fcd.tar.gz bugzilla-02c618aacd7f1b4683b73e93fa063d4db9e02fcd.tar.xz |
Bug 388723: Make the browser wrap comments on display in addition to the normal wrapping, to support CJK languages that have no spaces.
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=himorin, r=glob
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/bug/process/midair.html.tmpl | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index 1fc5d46d3..da3fe3a9d 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -216,7 +216,8 @@ [% ELSE %] [% wrapped_comment = comment.body FILTER wrap_comment %] [% END %] -<pre[% ' id="comment_text_' _ count _ '"' IF mode == "edit" %]> +<pre class="bz_comment_text" + [% ' id="comment_text_' _ count _ '"' IF mode == "edit" %]> [%- wrapped_comment FILTER quoteUrls(bug.bug_id) -%] </pre> </div> diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl index 31dbc7b3c..d7e980e8c 100644 --- a/template/en/default/bug/process/midair.html.tmpl +++ b/template/en/default/bug/process/midair.html.tmpl @@ -66,7 +66,9 @@ [% IF cgi.param("comment") %] <p> Your comment was:<br> - <blockquote><pre>[% cgi.param("comment") FILTER wrap_comment FILTER html %]</pre></blockquote> + <blockquote><pre class="bz_comment_text"> + [% cgi.param("comment") FILTER wrap_comment FILTER html %] + </pre></blockquote> </p> [% END %] |