mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
Render the cache correctly in DifferentialRevisionCommentView.
This commit is contained in:
parent
dd1d593786
commit
2c1ed9fd17
1 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,8 @@ final class DifferentialRevisionCommentView extends AphrontView {
|
||||||
if ($inline_cache) {
|
if ($inline_cache) {
|
||||||
$inline_content = $inline_cache;
|
$inline_content = $inline_cache;
|
||||||
} else {
|
} else {
|
||||||
$inline_content = $this->markupEngine->markupText($content);
|
$inline_content = $this->markupEngine->markupText(
|
||||||
|
$inline_content);
|
||||||
if ($inline->getID()) {
|
if ($inline->getID()) {
|
||||||
$inline->setCache($inline_content);
|
$inline->setCache($inline_content);
|
||||||
$inline->save();
|
$inline->save();
|
||||||
|
|
Loading…
Reference in a new issue