SyncProperty: fix expression

This commit is contained in:
Thomas Gelf 2015-11-02 16:21:35 +01:00
parent 610b873922
commit 499f223516
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class SyncProperty extends DbObject
public function setSource_column($value)
{
$this->source_expression = '$(' . $value . ')';
$this->source_expression = '${' . $value . '}';
return $this;
}
}