diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-14 15:50:20 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-14 15:50:20 +0000 |
commit | 41b4ba7841604b910599dd473c5009525a95dd0f (patch) | |
tree | 0cfe21bd8a6fdea0182dd918f15c9111fac9ad80 /engine | |
parent | 0f6addd322fe709f5a889ea5a719113b8deb4b78 (diff) | |
download | elgg-41b4ba7841604b910599dd473c5009525a95dd0f.tar.gz elgg-41b4ba7841604b910599dd473c5009525a95dd0f.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Relationships export
git-svn-id: https://code.elgg.org/elgg/trunk@443 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/export.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php index 6e9b1c495..4247ae348 100644 --- a/engine/lib/export.php +++ b/engine/lib/export.php @@ -214,9 +214,9 @@ { parent::__construct(); - $this->setAttribute('uuid1', $uuid); - $this->setAttribute('verb', $uuid); - $this->setAttribute('uuid2', $uuid); + $this->setAttribute('uuid1', $uuid1); + $this->setAttribute('verb', $verb); + $this->setAttribute('uuid2', $uuid2); } protected function getTagName() { return "relationship"; } |