mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 05:42:40 +01:00
Merge branch 'upload'
This commit is contained in:
commit
a3584efe78
1 changed files with 5 additions and 2 deletions
|
@ -73,9 +73,12 @@ class PhabricatorUserSettingsController extends PhabricatorPeopleController {
|
|||
->setURI('/settings/page/arcanist/?regenerated=true');
|
||||
case 'account':
|
||||
if (!empty($_FILES['profile'])) {
|
||||
$err = idx($_FILES['profile'], 'error');
|
||||
if ($err != UPLOAD_ERR_NO_FILE) {
|
||||
$file = PhabricatorFile::newFromPHPUpload($_FILES['profile']);
|
||||
$user->setProfileImagePHID($file->getPHID());
|
||||
}
|
||||
}
|
||||
|
||||
$user->save();
|
||||
return id(new AphrontRedirectResponse())
|
||||
|
|
Loading…
Reference in a new issue