diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-22 16:22:19 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-22 16:22:19 +0000 |
commit | 613748b75a9cd1f1b1939ab05c22e63407237984 (patch) | |
tree | 6378a1ee590a0798afea7a0a2627289711a03360 /engine/lib/export.php | |
parent | 8a73785aee3e51c26c65053a4de7c5d7f0ebb673 (diff) | |
download | elgg-613748b75a9cd1f1b1939ab05c22e63407237984.tar.gz elgg-613748b75a9cd1f1b1939ab05c22e63407237984.tar.bz2 |
Merged [6600],[6601],[6605],[6606],[6607],[6608],[6611] from 1.7 branch into trunk
git-svn-id: http://code.elgg.org/elgg/trunk@6843 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r-- | engine/lib/export.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php index c541b583b..1b09016b0 100644 --- a/engine/lib/export.php +++ b/engine/lib/export.php @@ -135,12 +135,14 @@ function get_entity_from_uuid($uuid) { * * @param int $guid * @param string $uuid + * @return bool */ function add_uuid_to_guid($guid, $uuid) { $guid = (int)$guid; $uuid = sanitise_string($uuid); - return create_metadata($guid, "import_uuid", $uuid); + $result = create_metadata($guid, "import_uuid", $uuid); + return (bool)$result; } |