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) {
|
if ($oval === null) {
|
||||||
$oval = '<em>null</em>';
|
$oval = '<em>null</em>';
|
||||||
} else {
|
} else {
|
||||||
$oval = phutil_escape_html($oval);
|
$oval = nl2br(phutil_escape_html($oval));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($nval === null) {
|
if ($nval === null) {
|
||||||
$nval = '<em>null</em>';
|
$nval = '<em>null</em>';
|
||||||
} else {
|
} else {
|
||||||
$nval = phutil_escape_html($nval);
|
$nval = nl2br(phutil_escape_html($nval));
|
||||||
}
|
}
|
||||||
|
|
||||||
$rows[] =
|
$rows[] =
|
||||||
|
|
Loading…
Reference in a new issue