diff options
author | 2002-06-23 22:14:13 +0000 | |
---|---|---|
committer | 2002-06-23 22:14:13 +0000 | |
commit | 5a8607b3a373b7d257a08c7f3f8169900202601a (patch) | |
tree | cb2a78ceb4ca0b3499d001216f267cdffd1c4356 | |
parent | Bug 153629: Clean up the HTML in the remembered query option knob section of ... (diff) | |
download | bugzilla-5a8607b3a373b7d257a08c7f3f8169900202601a.tar.gz bugzilla-5a8607b3a373b7d257a08c7f3f8169900202601a.tar.bz2 bugzilla-5a8607b3a373b7d257a08c7f3f8169900202601a.zip |
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" } , |