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

Change usernames to `sort64` to make them case-insensitive

Summary: Ref T1191. After adjustment, usernames currently end up case-sensitive, which means `alincoln` and `Alincoln` are different users. Make them case-sensitive so these names collie.

Test Plan: Ran `bin/storage adjust`.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T1191

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

+1 -1
+1 -1
src/applications/people/storage/PhabricatorUser.php
··· 114 114 return array( 115 115 self::CONFIG_AUX_PHID => true, 116 116 self::CONFIG_COLUMN_SCHEMA => array( 117 - 'userName' => 'text64', 117 + 'userName' => 'sort64', 118 118 'realName' => 'text128', 119 119 'sex' => 'text4?', 120 120 'translation' => 'text64?',