##############################################################
##
## ExhibitPlus Bug Report / Correction Report
## Found in version: 1.4
## Reported date: 23.04.05
## Report URL: http://jalbum.net/forum/thread.jspa?threadID=5439
## Assigned bug number: 14/002
## Severity: Minor, Thumbnails for folders may not be correctly displayed
## Occurance: Rare, only when non-ASCII characters are used in path/file names
## Fixed date: 24.05.05
## Fixed by: M.Fyvie
## Fixed in: Subsequent versions
##
## Error message: None
##
## Bug details:
## Skin does not correctly respect the "URL encode links"
## option in JAlbum. If non-ASCII characters are used
## in file or path names, problems displaying the images
## may result.
##
## Patch/Fix procedure: See instructions below
##
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
plugins/Utils.java
#
#-----[ FIND ]------------------------------------------
#
       if (engine.isUrlEncode()) {
         return s;
      }
      return IO.urlEncode(s);
#
#-----[ REPLACE WITH ]------------------------------------------
#
      if (engine.isUrlEncode()) {
		return IO.urlEncode(s);      
   	} else {
		return s;
      }
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
#-----[ RECOMPILE ]------------------------------------------
#
plugins/Utils.java
#
#-----[ CLOSE/RESTART JALBUM ]------------------------------------------
#
# EoM ######################################################## 