mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-18 02:31:10 +01:00
Fix exception when trying to save global setting mail tags
Summary: Ref T11098. Template preferences don't have a user, but this codepath didn't get fully updated to account for that. Test Plan: Saved mail tags in global prefernces. Reviewers: avivey, chad Reviewed By: chad Maniphest Tasks: T11098 Differential Revision: https://secure.phabricator.com/D16050
This commit is contained in:
parent
6ac5f84c8b
commit
4936be0868
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ final class PhabricatorEmailPreferencesSettingsPanel
|
||||||
return $editors;
|
return $editors;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getAllTags(PhabricatorUser $user) {
|
private function getAllTags(PhabricatorUser $user = null) {
|
||||||
$tags = array();
|
$tags = array();
|
||||||
foreach ($this->getAllEditorsWithTags($user) as $editor) {
|
foreach ($this->getAllEditorsWithTags($user) as $editor) {
|
||||||
$tags += $editor->getMailTagsMap();
|
$tags += $editor->getMailTagsMap();
|
||||||
|
|
Loading…
Reference in a new issue