diff options
author | ivan <ivan> | 2008-12-03 05:53:57 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-12-03 05:53:57 +0000 |
commit | 7dae8e06dea4c38b83abb2ef503a998fa551dce8 (patch) | |
tree | 653f51b99a574ee5a7fc003926326d24af591baf /httemplate/edit/part_pkg.cgi | |
parent | 3d4588eb9c2fdbac93af726b7b222e37b31439f0 (diff) |
60 char soft max length for packages, so invoices don't wrap, RT#4328
Diffstat (limited to 'httemplate/edit/part_pkg.cgi')
-rwxr-xr-x | httemplate/edit/part_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_pkg.cgi b/httemplate/edit/part_pkg.cgi index e73b76ee4..b30675617 100755 --- a/httemplate/edit/part_pkg.cgi +++ b/httemplate/edit/part_pkg.cgi @@ -21,7 +21,7 @@ Package information <TR> <TD ALIGN="right">Package (customer-visible)</TD> <TD> - <INPUT TYPE="text" NAME="pkg" SIZE=32 VALUE="<% $part_pkg->pkg %>"> + <INPUT TYPE="text" NAME="pkg" SIZE=32 MAXLENGTH=60 VALUE="<% $part_pkg->pkg %>"> </TD> </TR> <TR> |