1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

change '' => null from D1139

Summary: feedback from D1139 i missed before i git pushed.  :/

Test Plan: re-did test plan in d1139

Reviewers: epriestley

CC:
This commit is contained in:
Bob Trahan 2011-11-30 11:17:14 -08:00
parent d0d33094d6
commit 9f201ef897

View file

@ -84,7 +84,7 @@ class ConduitAPI_differential_getdiff_Method extends ConduitAPIMethod {
if ($project) {
$project_name = $project->getName();
} else {
$project_name = '';
$project_name = null;
}
$basic_dict['projectName'] = $project_name;