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

rapsli’s picture

Status: Needs review » Postponed (maintainer needs more info)

is this still an issue?

ncy’s picture

seems fine to me with the fix posted above.

rapsli’s picture

this fix is not in the code yet though, am I right?

ncy’s picture

i think it is. it's just adding the str_replace for the $folder_path_elt variable

rapsli’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

going to close this issue, as this version is not supported anymore and the issue is old