From 577a7f7e29fbfe96e49aae862511de28843298bb Mon Sep 17 00:00:00 2001 From: fauxpark Date: Sun, 3 Aug 2014 00:16:23 +1000 Subject: [PATCH] getBlame: PHP_EOL should be at the end of the line --- src/GitList/Git/Repository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitList/Git/Repository.php b/src/GitList/Git/Repository.php index 08787c8..8334bc3 100644 --- a/src/GitList/Git/Repository.php +++ b/src/GitList/Git/Repository.php @@ -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; }