mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Don't throw when a user saves account settings without changing their profile
picture. Summary: Going to Settings -> Account and hitting "Save" without selecting a file in the file dialog currently throws. Test Plan: Went to Settings -> Account and hit "Save" without making changes. No exception. Then uploaded a picture normally. Differential Revision: 30 Reviewed By: tomo Reviewers: tomo
This commit is contained in:
parent
e8e185ceb3
commit
03b88d1da3
1 changed files with 5 additions and 2 deletions
|
@ -73,8 +73,11 @@ class PhabricatorUserSettingsController extends PhabricatorPeopleController {
|
||||||
->setURI('/settings/page/arcanist/?regenerated=true');
|
->setURI('/settings/page/arcanist/?regenerated=true');
|
||||||
case 'account':
|
case 'account':
|
||||||
if (!empty($_FILES['profile'])) {
|
if (!empty($_FILES['profile'])) {
|
||||||
$file = PhabricatorFile::newFromPHPUpload($_FILES['profile']);
|
$err = idx($_FILES['profile'], 'error');
|
||||||
$user->setProfileImagePHID($file->getPHID());
|
if ($err != UPLOAD_ERR_NO_FILE) {
|
||||||
|
$file = PhabricatorFile::newFromPHPUpload($_FILES['profile']);
|
||||||
|
$user->setProfileImagePHID($file->getPHID());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
Loading…
Reference in a new issue