diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-23 22:19:47 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-23 22:19:47 +0000 |
commit | 602b37578a3a373f15b2f1d1641b3606c3f0d43b (patch) | |
tree | 7c6b3478bec4e872e9e35f91d6e45c742829151e /lib | |
parent | a2c5023bed6a515270d23efeb097b613bb978ffb (diff) | |
download | elgg-602b37578a3a373f15b2f1d1641b3606c3f0d43b.tar.gz elgg-602b37578a3a373f15b2f1d1641b3606c3f0d43b.tar.bz2 |
forgot to link up the new widget with the latest elgg bug work around
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tidypics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tidypics.php b/lib/tidypics.php index 9a3a82af7..e9b3ad46d 100644 --- a/lib/tidypics.php +++ b/lib/tidypics.php @@ -33,7 +33,7 @@ function tp_get_latest_photos($num_images, $owner_guid = 0)
{
$prev_context = set_context('front');
- $image_html = list_entities('object', 'image', $owner_guid, $num_images, false, false, false);
+ $image_html = tp_list_entities('object', 'image', $owner_guid, $num_images, false, false, false);
set_context($prev_context);
return $image_html;
}
|