diff options
author | gerv%gerv.net <> | 2002-06-24 00:13:43 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-06-24 00:13:43 +0200 |
commit | 9521800cced117962859cca4d377a4339199e7ae (patch) | |
tree | acc411dd7c6141958effbc756d6e382b7c0bc3af | |
parent | 827b828164394eb38ed4ef5eb0df99e8797021b1 (diff) | |
download | bugzilla-9521800cced117962859cca4d377a4339199e7ae.tar.gz bugzilla-9521800cced117962859cca4d377a4339199e7ae.tar.xz |
Bug 152772 - buglist.cgi truncates emails at 45 characters. Patch by gerv; 2xr=bbaetz.
-rw-r--r-- | template/en/default/list/table.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 13ae38dbd..765883319 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -35,9 +35,9 @@ "priority" => { maxlength => 3 , title => "Pri" } , "platform" => { maxlength => 3 , title => "Plt" } , "status" => { maxlength => 4 } , - "reporter" => { maxlength => 45 , ellipsis => "..." } , - "owner" => { maxlength => 45 , ellipsis => "..." } , - "qa_contact" => { maxlength => 45 , ellipsis => "..." , title => "QAContact" } , + "reporter" => { maxlength => 30 , ellipsis => "..." } , + "owner" => { maxlength => 30 , ellipsis => "..." } , + "qa_contact" => { maxlength => 30 , ellipsis => "..." , title => "QAContact" } , "resolution" => { maxlength => 4 } , "summary" => { maxlength => 60 , ellipsis => "..." } , "status_whiteboard" => { title => "StatusSummary" } , |