diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-03-10 11:46:48 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-03-10 11:46:48 -0700 |
commit | ffc85003aebc38056eb30fa9580b6395c92c0ee0 (patch) | |
tree | 1c5c1ad3d1c09bdcc76e64c5903a9c6a34c989d0 /FS/FS/Template_Mixin.pm | |
parent | bc99ec327381b95589d30e5c6b94ee724532cb91 (diff) |
trim credit reasons to 50 chars to avoid messing up typesetting, RT#27744
Diffstat (limited to 'FS/FS/Template_Mixin.pm')
-rw-r--r-- | FS/FS/Template_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index ec1902a8c..4a0834e05 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -1371,7 +1371,7 @@ sub print_generic { # credits my $credittotal = 0; foreach my $credit ( - $self->_items_credits( 'template' => $template, 'trim_len' => 60 ) + $self->_items_credits( 'template' => $template, 'trim_len' => 50 ) ) { my $total; |