diff options
author | Gervase Markham <gerv@mozilla.org> | 2010-03-29 14:06:55 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-03-29 14:06:55 +0200 |
commit | 33be6ee915c3791245ca040401764eb748f970ed (patch) | |
tree | e00841d55bdd03c54aa9cb0d933215d0e3605448 | |
parent | 47f65730cb4bb9700bb1547c318ff12944335ce1 (diff) | |
download | bugzilla-33be6ee915c3791245ca040401764eb748f970ed.tar.gz bugzilla-33be6ee915c3791245ca040401764eb748f970ed.tar.xz |
Bug 25275: Allow the URL column to be displayed in buglists
r/a=LpSolit
-rw-r--r-- | Bugzilla/Field.pm | 3 | ||||
-rw-r--r-- | template/en/default/list/table.html.tmpl | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm index c32a6a213..15f84e75f 100644 --- a/Bugzilla/Field.pm +++ b/Bugzilla/Field.pm @@ -167,7 +167,8 @@ use constant DEFAULT_FIELDS => ( buglist => 1}, {name => 'rep_platform', desc => 'Platform', in_new_bugmail => 1, type => FIELD_TYPE_SINGLE_SELECT, buglist => 1}, - {name => 'bug_file_loc', desc => 'URL', in_new_bugmail => 1}, + {name => 'bug_file_loc', desc => 'URL', in_new_bugmail => 1, + buglist => 1}, {name => 'op_sys', desc => 'OS/Version', in_new_bugmail => 1, type => FIELD_TYPE_SINGLE_SELECT, buglist => 1}, {name => 'bug_status', desc => 'Status', in_new_bugmail => 1, diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index a8b5cb608..a7e0a9aff 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -64,6 +64,7 @@ "product" => { maxlength => 8 } , "version" => { maxlength => 5 , title => "Vers" } , "op_sys" => { maxlength => 4 } , + "bug_file_loc" => { maxlength => 30 } , "target_milestone" => { title => "TargetM" } , "percentage_complete" => { format_value => "%d %%" } , } |