diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-27 00:48:33 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-27 00:48:33 +0200 |
commit | 9e8067ca4bb9e0d21a397f681fce376e9b28ef92 (patch) | |
tree | 1fa4f58ac0a732fa46d4991644b9ed8d66349ef2 /Bugzilla | |
parent | f2a3931c5f955bc2b26d3a6ee6e3fb55f6a27ee4 (diff) | |
download | bugzilla-9e8067ca4bb9e0d21a397f681fce376e9b28ef92.tar.gz bugzilla-9e8067ca4bb9e0d21a397f681fce376e9b28ef92.tar.xz |
Bug 551468: Stop word-wrapping comments on the server
r=glob, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 9ce2c9f94..f4ed56608 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -295,7 +295,7 @@ use constant LIST_OF_BUGS => 1; # How many of the user's most recent searches to save. use constant SAVE_NUM_SEARCHES => 10; -# The column length for displayed (and wrapped) bug comments. +# The column width for comment textareas and comments in bugmails. use constant COMMENT_COLS => 80; # Used in _check_comment(). Gives the max length allowed for a comment. use constant MAX_COMMENT_LENGTH => 65535; |