@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.

Conpherence - fix a bug

Summary: gotta idx() on this as the user may have no conpherences at all.

Test Plan: loaded up my 'noconpherences' user and observed no errors in the error log. my normal test user still worked okay too.

Reviewers: epriestley, garoevans

Reviewed By: garoevans

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5791

+1 -1
+1 -1
src/view/page/menu/PhabricatorMainMenuView.php
··· 271 271 ->withParticipantPHIDs(array($user->getPHID())) 272 272 ->withParticipationStatus($unread_status) 273 273 ->execute(); 274 - $message_count_number = $unread[$user->getPHID()]; 274 + $message_count_number = idx($unread, $user->getPHID(), 0); 275 275 if ($message_count_number > 999) { 276 276 $message_count_number = "\xE2\x88\x9E"; 277 277 }