diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-05 12:14:47 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-05 12:14:47 +0000 |
commit | ea8ea3c610582c8d564c5be38bc91b1987410a6b (patch) | |
tree | c09b9970fd7320f74fd4d1815692369dded39bab /actions/edit.php | |
parent | a1c32cf049031a463b1d7bb49a5c2957924d83a5 (diff) | |
download | elgg-ea8ea3c610582c8d564c5be38bc91b1987410a6b.tar.gz elgg-ea8ea3c610582c8d564c5be38bc91b1987410a6b.tar.bz2 |
merged in r580 and r581 into trunk
Diffstat (limited to 'actions/edit.php')
-rw-r--r-- | actions/edit.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/actions/edit.php b/actions/edit.php index cca66941a..df65448c8 100644 --- a/actions/edit.php +++ b/actions/edit.php @@ -36,7 +36,12 @@ if ($subtype == 'album' && $entity->access_id != $access) { $entity->access_id = $access; //get images from album and update access on image entities - $images = get_entities("object","image", $guid, '', 999, '', false); + $images = elgg_get_entities(array( + "type" => "object", + "subtype" => "image", + "container_guid" => $guid, + "limit" => ELGG_ENTITIES_NO_VALUE, + )); foreach ($images as $im) { $im->access_id = $access; $im->save(); |