diff options
author | jocuri%softhome.net <> | 2006-03-03 08:29:31 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2006-03-03 08:29:31 +0100 |
commit | 41e3d85bc3339af17852b901f316d23d25b8ce18 (patch) | |
tree | c153014556dfcefb894496a547347843a7c4d492 /template/en/default/bug | |
parent | c128d5e1b3f31913292d9cd2d1923c551f32cfcf (diff) | |
download | bugzilla-41e3d85bc3339af17852b901f316d23d25b8ce18.tar.gz bugzilla-41e3d85bc3339af17852b901f316d23d25b8ce18.tar.xz |
Patch for bug 328089: make number of columns in additional comments field identical with constants.COMMENT_COLS; patch by Rudolf Ramler <rudolf.ramler@scch.at>, r=vladd, a=justdave.
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/create/create-guided.html.tmpl | 10 | ||||
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl index 3c29791e5..b8f1d9fd9 100644 --- a/template/en/default/bug/create/create-guided.html.tmpl +++ b/template/en/default/bug/create/create-guided.html.tmpl @@ -336,7 +336,7 @@ function PutDescription() { [% INCLUDE global/textarea.html.tmpl name = 'comment' minrows = 6 - cols = 80 + cols = constants.COMMENT_COLS %] <p> Expand on the Summary. Please be @@ -388,7 +388,7 @@ function PutDescription() { [% INCLUDE global/textarea.html.tmpl name = 'reproduce_steps' minrows = 4 - cols = 80 + cols = constants.COMMENT_COLS defaultcontent = "1.\n2.\n3." %] <p> @@ -406,7 +406,7 @@ function PutDescription() { [% INCLUDE global/textarea.html.tmpl name = 'actual_results' minrows = 4 - cols = 80 + cols = constants.COMMENT_COLS %] <p> What happened after you performed the steps above? @@ -422,7 +422,7 @@ function PutDescription() { [% INCLUDE global/textarea.html.tmpl name = 'expected_results' minrows = 4 - cols = 80 + cols = constants.COMMENT_COLS %] <p> What should the software have done instead? @@ -438,7 +438,7 @@ function PutDescription() { [% INCLUDE global/textarea.html.tmpl name = 'additional_info' minrows = 8 - cols = 80 + cols = constants.COMMENT_COLS %] <p> Add any additional information you feel may be diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index d5e0081d9..ed84f3391 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -319,7 +319,7 @@ function set_assign_to() { name = 'comment' minrows = 10 maxrows = 25 - cols = 80 + cols = constants.COMMENT_COLS defaultcontent = defaultcontent %] <br> diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 3c647b67d..02fb20d61 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -572,7 +572,7 @@ id = 'comment' minrows = 10 maxrows = 25 - cols = 80 + cols = constants.COMMENT_COLS accesskey = 'c' %] |