Fixed to update to use the new method signature.

This commit is contained in:
Loic d'Anterroches
2009-05-25 15:19:22 +02:00
parent d31cd2aef4
commit 0fd0c40e89
2 changed files with 2 additions and 2 deletions

View File

@@ -437,7 +437,7 @@ class IDF_Scm_Git extends IDF_Scm
continue;
}
}
$c['full_message'] = trim($c['full_message']);
$c['full_message'] = !empty($c['full_message']) ? trim($c['full_message']) : '';
$res[] = (object) $c;
return $res;
}