RepositoryQuery: Fix that the query is not passed as context in fetchAll()

This commit is contained in:
Johannes Meyer 2015-11-03 14:36:42 +01:00
parent 477af43a2f
commit 48e6bdd6ce
1 changed files with 2 additions and 1 deletions

View File

@ -644,7 +644,8 @@ class RepositoryQuery implements QueryInterface, SortRules, FilterColumns, Itera
$row->{$rule[0]} = $this->repository->retrieveColumn(
$this->target,
$nativeAlias,
$row->{$rule[0]}
$row->{$rule[0]},
$this
);
}
} elseif (array_key_exists($rule[0], $flippedColumns)) {