@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Chad Little and committed by
chad
8d398f6f 3698e4a1

+1 -1
+1 -1
src/applications/conpherence/storage/ConpherenceThread.php
··· 204 204 } 205 205 206 206 $user_participation = $this->getParticipantIfExists($viewer->getPHID()); 207 - $theme = ConpherenceRoomSettings::COLOR_LIGHT; 207 + $theme_class = ConpherenceRoomSettings::COLOR_LIGHT; 208 208 if ($user_participation) { 209 209 $user_seen_count = $user_participation->getSeenMessageCount(); 210 210 $participant = $this->getParticipant($viewer->getPHID());