diff options
Diffstat (limited to 'engine/lib/relationships.php')
-rw-r--r-- | engine/lib/relationships.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php index 4d0db5d66..5313aa841 100644 --- a/engine/lib/relationships.php +++ b/engine/lib/relationships.php @@ -116,12 +116,19 @@ * @return array */ public function export() - { - return new ODDRelationship( + { + global $CONFIG; + + $uuid = $CONFIG->wwwroot . "odd/{$this->guid_one}/relationship/{$this->id}/"; + $relationship = new ODDRelationship( guid_to_uuid($this->guid_one), $this->relationship, guid_to_uuid($this->guid_two) ); + + $relationship->setAttribute('uuid', $uuid); + + return $relationship; } // IMPORTABLE INTERFACE //////////////////////////////////////////////////////////// |