If your saved gallery path has spaces in it, folder links don't work correctly (they all link to the base gallery path).
In fast_gallery.module, change this part:
// Match up path with filename, directory-by-directory from bottom up
$folder_path_elt = array_shift($folder_path_ar);
to this:
// Match up path with filename, directory-by-directory from bottom up
$folder_path_elt = str_replace(' ', '_', array_shift($folder_path_ar));
Comments
Comment #1
rapsli commentedis this still an issue?
Comment #2
ncy commentedseems fine to me with the fix posted above.
Comment #3
rapsli commentedthis fix is not in the code yet though, am I right?
Comment #4
ncy commentedi think it is. it's just adding the str_replace for the $folder_path_elt variable
Comment #5
rapsli commentedgoing to close this issue, as this version is not supported anymore and the issue is old