-
Type:
Bug
-
Status: Closed
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.20.03, 2.21.03, Unreleased - EOL
-
Component/s: None
-
Labels:None
-
Similar issues:
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)