Skip to content

Commit

Permalink
Merge pull request #4573 from Remo/patch-8
Browse files Browse the repository at this point in the history
[5.7] use original value in select value translations
  • Loading branch information
aembler committed Nov 4, 2016
2 parents c9f8b03 + 6b0c8ac commit 5e59aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/concrete/attributes/select/option.php
Expand Up @@ -113,9 +113,9 @@ public static function exportTranslations()
$r = $db->Execute('select ID from atSelectOptions order by ID asc');
while ($row = $r->FetchRow()) {
$opt = static::getByID($row['ID']);
$translations->insert('SelectAttributeValue', $opt->getSelectAttributeOptionValue());
$translations->insert('SelectAttributeValue', $opt->getSelectAttributeOptionValue(false));
}
return $translations;
}

}
}

0 comments on commit 5e59aa1

Please sign in to comment.