##############################################################
##
## ExhibitPlus Bug Report / Correction Report
## Found in version: 1.4
## Reported date: 19.04.05
## Report URL: http://www.jalbum.net/forum/thread.jspa?threadID=5384
## Assigned bug number: 14/003
## Severity: Major, album processing will not start
## Occurance: Console mode only
## Fixed date: 24.05.05
## Fixed by: M.Fyvie (info from stucw)
## Fixed in: Subsequent versions
##
## Error message: Sourced file: inline evaluation of: `` time = new Timer(); time.start(); variableInitSlide(); utils.imageCal . . . '' : Found non-public method: java.lang.String Utils.makeThumbLinks(). Use setAccessibility(true) to enable access to private and protected members of classes.
##
## Bug details:
## When using console mode the above error message appears.
## Turning on accessibility mode seems to work around the issue.
##
## Patch/Fix procedure: See instructions below
##
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
init.bsh
#
#-----[ FIND ]------------------------------------------
#
import se.datadosen.util.*;
#
#-----[ AFTER, ADD ]------------------------------------------
#
setAccessibility(true);
#
#-----[ OPEN ]------------------------------------------
#
index.htt
#
#-----[ FIND ]------------------------------------------
#
	time = new Timer();
#
#-----[ REPLACE WITH ]------------------------------------------
#
	time = new se.datadosen.util.Timer();
#
#-----[ OPEN ]------------------------------------------
#
slide.htt
#
#-----[ FIND ]------------------------------------------
#
  time = new Timer();
#
#-----[ REPLACE WITH ]------------------------------------------
#
  time = new se.datadosen.util.Timer();
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM ######################################################## 



