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

Emails - fix duplicate email error

Summary: $email => $e_email. Fixes T5933.

Test Plan: Added an email that was already on another account and got the proper "Duplicate" UI with the duplicate email address still entered

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5933

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

+1 -1
+1 -1
src/applications/settings/panel/PhabricatorSettingsPanelEmailAddresses.php
··· 211 211 212 212 return id(new AphrontDialogResponse())->setDialog($dialog); 213 213 } catch (AphrontDuplicateKeyQueryException $ex) { 214 - $email = pht('Duplicate'); 214 + $e_email = pht('Duplicate'); 215 215 $errors[] = pht('Another user already has this email.'); 216 216 } 217 217 }