diff options
author | cash <cash.costello@gmail.com> | 2011-12-03 15:42:40 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-12-03 15:42:40 -0500 |
commit | 092197523f135b1aec3de8ff50df0dcf724c8094 (patch) | |
tree | a58f96da95f9349e2cbae13be3bc144944aee343 /views/default/river/object/album | |
parent | 5e7ea5369519949ea6dc7954a61f4d4eba29b0d0 (diff) | |
download | elgg-092197523f135b1aec3de8ff50df0dcf724c8094.tar.gz elgg-092197523f135b1aec3de8ff50df0dcf724c8094.tar.bz2 |
river finished up for image, batch, album
Diffstat (limited to 'views/default/river/object/album')
-rw-r--r-- | views/default/river/object/album/create.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/views/default/river/object/album/create.php b/views/default/river/object/album/create.php index a60891ff8..3f9c42d7a 100644 --- a/views/default/river/object/album/create.php +++ b/views/default/river/object/album/create.php @@ -17,11 +17,12 @@ if ($album_river_view == "cover") { $images = $album->getImages(7); if (count($images)) { - $attachments = '<ul>'; + $attachments = '<ul class="tidypics-river-list">'; foreach($images as $image) { - $attachments .= '<li>'; + $attachments .= '<li class="tidypics-photo-item">'; $attachments .= elgg_view('output/img', array( 'src' => $image->getSrcUrl('thumb'), + 'class' => 'elgg-photo', )); $attachments .= '</li>'; } |