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

When sorting subscriber references for display in the curtain UI, sort without case sensitivity

Summary: Ref T13486. Currently, "Zarbo" sorts above "alice", but this isn't expected for a list of (mostly) human usernames.

Test Plan: Loaded a task with subscribers with mixed-case usernames.

Maniphest Tasks: T13486

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

+2
+2
src/applications/subscriptions/engineextension/PhabricatorSubscriptionsCurtainExtension.php
··· 123 123 $handle = $handles[$subscriber_phid]; 124 124 if ($handle->isComplete()) { 125 125 $is_complete = true; 126 + 126 127 $sort_name = $handle->getLinkName(); 128 + $sort_name = phutil_utf8_strtolower($sort_name); 127 129 } 128 130 } 129 131 }