diff options
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/attachment/midair.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/bug/process/midair.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/pages/linked.html.tmpl | 4 |
4 files changed, 10 insertions, 5 deletions
diff --git a/template/en/default/attachment/midair.html.tmpl b/template/en/default/attachment/midair.html.tmpl index 8cde9f2f5..f0883b55b 100644 --- a/template/en/default/attachment/midair.html.tmpl +++ b/template/en/default/attachment/midair.html.tmpl @@ -50,7 +50,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 %] 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 %] diff --git a/template/en/default/pages/linked.html.tmpl b/template/en/default/pages/linked.html.tmpl index a5e40d122..52b1735f6 100644 --- a/template/en/default/pages/linked.html.tmpl +++ b/template/en/default/pages/linked.html.tmpl @@ -30,7 +30,7 @@ <hr> <p> -<pre> +<pre class="bz_comment_text"> [%- cgi.param("text") FILTER wrap_comment FILTER quoteUrls FILTER html -%] </pre> </p> @@ -45,7 +45,7 @@ <hr> <p> -<pre> +<pre class="bz_comment_text"> [%- cgi.param("text") FILTER wrap_comment FILTER quoteUrls -%] </pre> </p> |