mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Merge pull request #238 from hfcorriez/master
Fix call to undefined method for DifferentialChangesetParser::originalRight()
This commit is contained in:
commit
f2271564ed
1 changed files with 1 additions and 1 deletions
|
@ -1140,7 +1140,7 @@ final class DifferentialChangesetParser {
|
|||
return $output;
|
||||
}
|
||||
|
||||
if ($this->originalLeft && $this->originalRight()) {
|
||||
if ($this->originalLeft && $this->originalRight) {
|
||||
list($highlight_old, $highlight_new) = $this->diffOriginals();
|
||||
$highlight_old = array_flip($highlight_old);
|
||||
$highlight_new = array_flip($highlight_new);
|
||||
|
|
Loading…
Reference in a new issue