From a79861f3967d808dfa166e5323b9a9bf62a894f3 Mon Sep 17 00:00:00 2001 From: Remo Laubacher Date: Fri, 28 Oct 2016 20:28:03 +0200 Subject: [PATCH] use original value in select value translations Former-commit-id: 6b0c8ac0c84ae2ed4f92889ab11e78860e00df56 Former-commit-id: 196032fdaad123c2ade74ee50bdb99d39204eacc --- web/concrete/attributes/select/option.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/concrete/attributes/select/option.php b/web/concrete/attributes/select/option.php index b316c0c69bd..62eb699e7ae 100644 --- a/web/concrete/attributes/select/option.php +++ b/web/concrete/attributes/select/option.php @@ -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; } -} \ No newline at end of file +}