mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Don't render <div> inside <span>
Test Plan: D1 Reviewers: epriestley Reviewed By: epriestley CC: aran Differential Revision: https://secure.phabricator.com/D2121
This commit is contained in:
parent
23b65c13f4
commit
2211a0b07e
1 changed files with 1 additions and 5 deletions
|
@ -141,11 +141,7 @@ final class PhabricatorTransactionView extends AphrontView {
|
|||
}
|
||||
|
||||
private function renderTransactionActions() {
|
||||
$actions = implode('', $this->actions);
|
||||
return
|
||||
'<span class="phabricator-transaction-actions">'.
|
||||
$actions.
|
||||
'</span>';
|
||||
return implode('', $this->actions);
|
||||
}
|
||||
|
||||
private function renderTransactionStyle() {
|
||||
|
|
Loading…
Reference in a new issue