Skip to content

Commit

Permalink
Corrected path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Sturgeon committed Mar 2, 2011
1 parent 81ec9bf commit 1f6e39c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/modules/galleries/views/gallery.php
Expand Up @@ -11,7 +11,7 @@
<?php if ($gallery_images): ?>
<?php foreach ( $gallery_images as $image): ?>
<li>
<a href="<?php echo site_url('galleries/' . $gallery->slug . '/' . $image->id); ?>" class="gallery-image" rel="<?php echo base_url() . 'files/' . $image->file_id; ?>">
<a href="<?php echo site_url('galleries/' . $gallery->slug . '/' . $image->id); ?>" class="gallery-image" rel=""<?php echo base_url().'uploads/files/' . $image->filename; ?>"">
<?php echo img(array('src' => base_url() . 'files/thumb/' . $image->file_id, 'alt' => $image->name)); ?>
</a>
</li>
Expand Down

0 comments on commit 1f6e39c

Please sign in to comment.