diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-05-15 23:07:35 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-05-15 23:07:35 +0200 |
commit | 5e2fe0d195fb8b9c67c346cc8a5218082ccf0588 (patch) | |
tree | c33ef1d0a95549fe0bf56cc76f53d11f903aa73b /program/lib/Roundcube/rcube_imap_generic.php | |
parent | 3e78fc7fdf23f752ecad3874b196dceaf529976f (diff) | |
parent | 43079d8e2dbd8e195b63dd8fb9f5251ae7c66248 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/lib/Roundcube/rcube_imap_generic.php')
-rw-r--r-- | program/lib/Roundcube/rcube_imap_generic.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php index 1d2a9be16..292b932e1 100644 --- a/program/lib/Roundcube/rcube_imap_generic.php +++ b/program/lib/Roundcube/rcube_imap_generic.php @@ -72,7 +72,7 @@ class rcube_imap_generic const COMMAND_CAPABILITY = 2; const COMMAND_LASTLINE = 4; - const DEBUG_LINE_LENGTH = 4096; + const DEBUG_LINE_LENGTH = 4098; // 4KB + 2B for \r\n /** * Object constructor @@ -3780,8 +3780,9 @@ class rcube_imap_generic private function debug($message) { if (($len = strlen($message)) > self::DEBUG_LINE_LENGTH) { - $message = substr_replace($message, "\n-----[debug cut]-----\n", - self::DEBUG_LINE_LENGTH/2 - 11, $len - self::DEBUG_LINE_LENGTH - 22); + $diff = $len - self::DEBUG_LINE_LENGTH; + $message = substr($message, 0, self::DEBUG_LINE_LENGTH) + . "... [truncated $diff bytes]"; } if ($this->resourceid) { |