Skip to content

Commit

Permalink
Unique ID allgemein bei inline Relationen ergänzt #1420 (#1422)
Browse files Browse the repository at this point in the history
  • Loading branch information
dergel committed Jan 16, 2024
1 parent c88c634 commit 4df1c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/manager/lib/yform/value/be_manager_relation.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public function enterObject()
$form_name = $this->params['this']->getObjectparams('form_name');
$form_array = array_merge($this->params['this']->getObjectparams('form_array'), [$this->getId()]);

$fieldkey = $this->relation['source_table'] . '-' . $this->relation['target_table'] . '-' . $this->relation['target_field'];
$fieldkey = $this->relation['source_table'] . '-' . $this->relation['target_table'] . '-' . $this->relation['target_field'] . '-' . uniqid();
$relationKey = '__' . sha1($fieldkey) . '__';

// ----- Existing Relations
Expand Down

0 comments on commit 4df1c69

Please sign in to comment.