Index: templates/newreport.tpl =================================================================== --- templates/newreport.tpl (revision 750) +++ templates/newreport.tpl (working copy) @@ -55,6 +55,8 @@ + $customfields[left] + @@ -94,7 +96,9 @@ - + + $customfields[right] + Index: newreport.php =================================================================== --- newreport.php (revision 750) +++ newreport.php (working copy) @@ -182,6 +182,22 @@ } } + // custom fields + $fields = construct_custom_fields(null, true); + $i = 0; + foreach ($fields AS $field) + { + if ($i % 2 == 0) + { + $customfields['left'] .= $field; + } + else + { + $customfields['right'] .= $field; + } + $i++; + } + $pcv_select = construct_pcv_select('cansubmitbugs', $bugsys->in['pcv_select']); $reporter = construct_user_display($bugsys->userinfo);