mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-03 11:21:01 +01:00
Wrap Differential property changes
This commit is contained in:
parent
e48830eecb
commit
bf10eaf81c
1 changed files with 2 additions and 2 deletions
|
@ -1587,13 +1587,13 @@ final class DifferentialChangesetParser {
|
|||
if ($oval === null) {
|
||||
$oval = '<em>null</em>';
|
||||
} else {
|
||||
$oval = phutil_escape_html($oval);
|
||||
$oval = nl2br(phutil_escape_html($oval));
|
||||
}
|
||||
|
||||
if ($nval === null) {
|
||||
$nval = '<em>null</em>';
|
||||
} else {
|
||||
$nval = phutil_escape_html($nval);
|
||||
$nval = nl2br(phutil_escape_html($nval));
|
||||
}
|
||||
|
||||
$rows[] =
|
||||
|
|
Loading…
Reference in a new issue