getBlame: PHP_EOL should be at the end of the line

This commit is contained in:
fauxpark
2014-08-03 00:16:23 +10:00
parent 6c99ffee4c
commit 577a7f7e29

View File

@@ -105,7 +105,7 @@ class Repository extends BaseRepository
);
}
$blame[$i]['line'] .= PHP_EOL . $match[3][0];
$blame[$i]['line'] .= $match[3][0] . PHP_EOL;
$previousCommit = $currentCommit;
}