1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Minor, silence a type warning for differential.getcommitmessage on --create workflow.

This commit is contained in:
epriestley 2012-01-26 11:33:19 -08:00
parent b4053190ec
commit f009d5cdcb

View file

@ -76,6 +76,9 @@ class ConduitAPI_differential_getcommitmessage_Method extends ConduitAPIMethod {
if ($is_edit) {
$fields = $request->getValue('fields');
if (!is_array($fields)) {
$fields = array();
}
foreach ($fields as $field => $value) {
$aux_field = idx($aux_fields, $field);