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

mustafadur’s picture

Version: 6.x-3.2-beta2 » 6.x-3.2

I am using 6.x-3.2 I am puzzled by reference to beta in .info file.

tutumlum’s picture

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;

rapsli’s picture

Version: 6.x-3.2 » 6.x-3.3-beta1
Status: Active » Fixed

commited to dev. Even though it worked before...

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.