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
Comment #1
mustafadur commentedI am using 6.x-3.2 I am puzzled by reference to beta in .info file.
Comment #2
tutumlum commentedsuggested 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;
Comment #3
rapsli commentedcommited to dev. Even though it worked before...