1
0
Fork 0
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:
vrana 2012-04-06 01:36:32 -07:00
parent 23b65c13f4
commit 2211a0b07e

View file

@ -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() {