1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 16:52:41 +01:00

Fix $classes not imploding properly in list view

Summary: Fixes the persistent chat hyperlinks showing.

Test Plan: Open persistent chat, no longer see the hyperlinks showing. Close and open chat. Edit room.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D17216
This commit is contained in:
Chad Little 2017-01-17 14:52:57 -08:00
parent d7e5a8b978
commit db65f828ee

View file

@ -249,7 +249,7 @@ final class PHUIListItemView extends AphrontTagView {
$name = phutil_tag( $name = phutil_tag(
'span', 'span',
array( array(
'class' => $classes, 'class' => implode(' ', $classes),
), ),
array( array(
$this->name, $this->name,