Hi rt-users,
anyone who knows how to adjust RT that the “— Headers Follow
—” part is omitted?
Cheers,
Vince
‘’'
���
Hi rt-users,
anyone who knows how to adjust RT that the “— Headers Follow
—” part is omitted?
Cheers,
Vince
‘’'
���
we’re using rt 1.0.2 and if you look around line 90 of
/usr/local/rt/lib/rt/ui/web/support.pm (your path may vary slightly at
the beginning) there is a snippet of code that says
if ($header_mode ne 'none') {
&new_table(); {
foreach $line (@header_lines) {
I just threw in a line above it so it looks like:
$header_mode = "none";
if ($header_mode ne 'none') {
&new_table(); {
foreach $line (@header_lines) {
not very pretty but it works.