diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/forms/photos/admin/settings.php | 2 | ||||
-rw-r--r-- | views/default/object/album/full.php | 10 |
2 files changed, 3 insertions, 9 deletions
diff --git a/views/default/forms/photos/admin/settings.php b/views/default/forms/photos/admin/settings.php index f4bafce78..16d5eb0ce 100644 --- a/views/default/forms/photos/admin/settings.php +++ b/views/default/forms/photos/admin/settings.php @@ -42,7 +42,7 @@ echo elgg_view('input/dropdown', array( echo '</div>'; echo '<div>'; echo elgg_echo('tidypics:settings:im_path') . ' '; -echo elgg_view("input/text", array('name' => 'params[im_path]', 'value' => $$plugin->im_path)); +echo elgg_view("input/text", array('name' => 'params[im_path]', 'value' => $plugin->im_path)); echo '</div>'; diff --git a/views/default/object/album/full.php b/views/default/object/album/full.php index ceb8b97aa..7b273c66e 100644 --- a/views/default/object/album/full.php +++ b/views/default/object/album/full.php @@ -48,14 +48,8 @@ if ($album->description) { 'class' => 'mbm', )); } -$body .= tidypics_list_photos(array( - 'container_guid' => $album->getGUID(), - 'limit' => 16, - 'full_view' => false, - 'list_type' => 'gallery', - 'list_type_toggle' => false, - 'gallery_class' => 'tidypics-gallery', -)); + +$body .= $album->viewImages(); echo elgg_view('object/elements/full', array( 'entity' => $album, |