Posted by mustafadur on January 7, 2009 at 9:42am
Jump to:
| Project: | Fast Gallery |
| Version: | 6.x-3.3-beta1 |
| Component: | User interface |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
I uploaded folder.jpg inside to my pictures folder.It appears nicely and shows EXIF data as description. However when I click the gallery I see folder.jpg inside the folder which I don't want. I cleared the db cleared the cache and still it shows folder.jpg I think it shouldnt show the folder.jpg.
Comments
#1
I am using 6.x-3.2 I am puzzled by reference to beta in .info file.
#2
suggested fix:
fast_gallery.class.php: lines 56 to 62:
// Skip over the custom folder thumbnails.
$tmp_ar = explode('/', $value);
if (end($tmp_ar) == 'folder.jpg')
continue;
// Handle files with special characters.
$value_slash = str_replace('\\', '/', utf8_encode($value));
change to:
// Handle files with special characters.
$value_slash = str_replace('\\', '/', utf8_encode($value));
// Skip over the custom folder thumbnails.
$tmp_ar = explode('/', $value_slash);
if (end($tmp_ar) == 'folder.jpg')
continue;
#3
commited to dev. Even though it worked before...
#4
Automatically closed -- issue fixed for two weeks with no activity.