Details
-
Bug
-
Status: Closed
-
Normal
-
Resolution: Fixed
-
None
-
None
-
None
Description
http://hippo.2275632.n2.nabble.com/bug-in-FolderWorkflowImpl-hippo-7-5-4-td6808714.html
FolderWorkflowImpl.copy(String relPath, String absPath, Map<String,String> arguments)
last line of the method
is:
absPath.substring(absPath.lastIndexOf("/"+1))
should be:
absPath.substring(absPath.lastIndexOf("/")+1)