mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +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:
parent
d7e5a8b978
commit
db65f828ee
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ final class PHUIListItemView extends AphrontTagView {
|
|||
$name = phutil_tag(
|
||||
'span',
|
||||
array(
|
||||
'class' => $classes,
|
||||
'class' => implode(' ', $classes),
|
||||
),
|
||||
array(
|
||||
$this->name,
|
||||
|
|
Loading…
Reference in a new issue