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

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.

#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

Version:6.x-3.2» 6.x-3.3-beta1
Status:active» fixed

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

#4

Status:fixed» closed (fixed)

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