Skip to content

Commit

Permalink
cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaDafinser committed Oct 29, 2015
1 parent 7b5ea1b commit 2219296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZfcDatagrid/PrepareData.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function prepare()
if ($col->isTranslationEnabled() === true) {
if (is_array($row[$col->getUniqueId()])) {
foreach ($row[$col->getUniqueId()] as &$value) {
if(is_array($value)){
if (is_array($value)) {
continue;
}
$value = $this->getTranslator()->translate($value);
Expand Down

0 comments on commit 2219296

Please sign in to comment.