Skip to content

Commit

Permalink
getBlame: PHP_EOL should be at the end of the line
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark committed Aug 2, 2014
1 parent 6c99ffe commit 577a7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GitList/Git/Repository.php
Expand Up @@ -105,7 +105,7 @@ public function getBlame($file)
);
}

$blame[$i]['line'] .= PHP_EOL . $match[3][0];
$blame[$i]['line'] .= $match[3][0] . PHP_EOL;
$previousCommit = $currentCommit;
}

Expand Down

0 comments on commit 577a7f7

Please sign in to comment.