1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 03:50:54 +01:00

Fix error introduced with D1195.

Summary:
Not my best commit=/

Reviewers: epriestley

Test plan:
After the change commit parser started working again.

Differential Revision: 1206
This commit is contained in:
Marek Sapota 2011-12-13 20:36:10 -08:00
parent 51b8168253
commit 4ef18d35ac

View file

@ -100,7 +100,7 @@ abstract class PhabricatorRepositoryCommitMessageParserWorker
$committer = $data->getCommitDetail('authorPHID'); $committer = $data->getCommitDetail('authorPHID');
if (!$committer) { if (!$committer) {
$committer = $revision->getAuthorPHID(); $committer = $revision->getAuthorPHID();
$message = 'Change committed by '.$commit->getAuthorName().'.'; $message = 'Change committed by '.$data->getAuthorName().'.';
} }
$editor = new DifferentialCommentEditor( $editor = new DifferentialCommentEditor(
$revision, $revision,