diff options
| author | Cash Costello <cash.costello@gmail.com> | 2010-10-25 00:22:20 +0000 |
|---|---|---|
| committer | Cash Costello <cash.costello@gmail.com> | 2010-10-25 00:22:20 +0000 |
| commit | 893364a28955358ad259bfb75798560616ab3d49 (patch) | |
| tree | 8b2ac2fb618596fed82b12c221eb7c485cbb9590 /lib | |
| parent | da1493b95a2f0b5000a487ae373c9318c58d0b2d (diff) | |
| download | elgg-893364a28955358ad259bfb75798560616ab3d49.tar.gz elgg-893364a28955358ad259bfb75798560616ab3d49.tar.bz2 | |
supporting both basic and flash uploader
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/album.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/album.php b/lib/album.php index 916ccbc31..0d5140875 100644 --- a/lib/album.php +++ b/lib/album.php @@ -210,9 +210,11 @@ class TidypicsAlbum extends ElggObject { protected function deleteImages() { // get all the images from this album as long as less than 999 images $images = get_entities("object", "image", $this->guid, '', 999); - foreach ($images as $image) { - if ($image) { - $image->delete(); + if ($images) { + foreach ($images as $image) { + if ($image) { + $image->delete(); + } } } } |
