mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 14:00:56 +01:00
Don't count "\r" or "\n" for purposes of linewrapping text in Differential
Summary: This should all go away at some point when we move to fluid layout, but don't be more annoying than necessary in the meantime. Test Plan: Meta. Reviewers: vrana, btrahan Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D3788
This commit is contained in:
parent
89b9d56cbe
commit
c0b9b6db54
1 changed files with 3 additions and 1 deletions
|
@ -818,7 +818,9 @@ final class DifferentialChangesetParser {
|
||||||
$text,
|
$text,
|
||||||
$intra[$key]);
|
$intra[$key]);
|
||||||
}
|
}
|
||||||
if (isset($corpus[$key]) && strlen($corpus[$key]) > $this->lineWidth) {
|
if (isset($corpus[$key]) &&
|
||||||
|
strlen($corpus[$key]) > $this->lineWidth &&
|
||||||
|
strlen(rtrim($corpus[$key], "\r\n")) > $this->lineWidth) {
|
||||||
$lines = phutil_utf8_hard_wrap_html($render[$key], $this->lineWidth);
|
$lines = phutil_utf8_hard_wrap_html($render[$key], $this->lineWidth);
|
||||||
$render[$key] = implode($line_break, $lines);
|
$render[$key] = implode($line_break, $lines);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue