mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-15 18:10:53 +01:00
(stable) Fix variable name for theme_class
Summary: Fixes T12622. This variable is mis-named. Test Plan: Visit a room I have not joined. Reviewers: epriestley, amckinley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12622 Differential Revision: https://secure.phabricator.com/D17767
This commit is contained in:
parent
033c4ace0d
commit
72976909b1
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ final class ConpherenceThread extends ConpherenceDAO
|
||||||
}
|
}
|
||||||
|
|
||||||
$user_participation = $this->getParticipantIfExists($viewer->getPHID());
|
$user_participation = $this->getParticipantIfExists($viewer->getPHID());
|
||||||
$theme = ConpherenceRoomSettings::COLOR_LIGHT;
|
$theme_class = ConpherenceRoomSettings::COLOR_LIGHT;
|
||||||
if ($user_participation) {
|
if ($user_participation) {
|
||||||
$user_seen_count = $user_participation->getSeenMessageCount();
|
$user_seen_count = $user_participation->getSeenMessageCount();
|
||||||
$participant = $this->getParticipant($viewer->getPHID());
|
$participant = $this->getParticipant($viewer->getPHID());
|
||||||
|
|
Loading…
Reference in a new issue