Widening ticket list and allowing for larger subject lines:. This way emails with subjects longer than 40 characters don't get truncated. Emails with subjects longer than 80 will get truncated now.
__include/staff/tickets.inc.php
** Subject
Remove width="280"
** Subject
__include/staff/tickets.inc.php
** truncate($row,40);
Change 40 to 80.
** truncate($row,80);
__scp/css/main.css
** width;
Change 840 to 1040
** width;
The 1040 is setup for my 19" wide screen in 1440x900 mode. This can change to anything you need it to. So far it appears everything is scaled to fit by % off of this value. By removing the width for the subject line, you scale out only that column since you are leaving the other columns with a set width.