fix direct use of customer_view_emails pref, RT#78617
authorIvan Kohler <ivan@freeside.biz>
Thu, 11 Jan 2018 00:41:27 +0000 (16:41 -0800)
committerIvan Kohler <ivan@freeside.biz>
Thu, 11 Jan 2018 00:41:27 +0000 (16:41 -0800)
httemplate/view/cust_main/notes/email.html

index 41c5b8a..9e217e4 100644 (file)
@@ -61,7 +61,10 @@ my $cust_main = $opt{'cust_main'}
 my $custnum = $cust_main->custnum;
 
 my $where = "WHERE cust_msg.custnum = $custnum";
-my $maxrecords = $curuser->option('customer_view_emails') || 10;
+my $maxrecords = 10;
+if ( $curuser->option('customer_view_emails') =~ /^\s*(\d+)\s*$/ ) {
+  $maxrecords = $1;
+}
 
 my $order_by = '_date DESC';