From 613748b75a9cd1f1b1939ab05c22e63407237984 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 22 Aug 2010 16:22:19 +0000 Subject: 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 --- engine/lib/export.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'engine/lib/export.php') 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; } -- cgit v1.2.3