1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fix fatal on project editing

Summary:
I didn't grep carefully enough when renaming this to 'loadProject' in D485. See
task. I am terrible at the programmings.

Test Plan:
Hit the "Edit project" view, grepped more thoroughly. :P

Reviewed By: tomo
Reviewers: tomo, toulouse, cadamo
CC: aran, tomo
Differential Revision: 503
This commit is contained in:
epriestley 2011-06-23 11:00:24 -07:00
parent c915a064a9
commit b093113d02

View file

@ -35,7 +35,7 @@ class PhabricatorProjectProfileEditController
if (!$project) {
return new Aphront404Response();
}
$profile = $project->getProfile();
$profile = $project->loadProfile();
} else {
$project = new PhabricatorProject();
$project->setAuthorPHID($user->getPHID());