Actions
Bug #5567
closedClick the schedule button on sankparks skin got an blank page
Start date:
12/15/2011
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
5567
Description
Click TPC worklfow link on the sanparks skin, user will get a list of workflows. Every workflow has three associated actions. One of them is Schedule. But click the button, it just shows a blank page. It worked, but i don't know why it doesn't work any more.
Updated by Jing Tao almost 13 years ago
In scheduleWorkflowRun.jsp file, it has code like:
String karId = LSIDUtil.getDocId(karLsid, false);
PermissionController permissionController = new PermissionController(karId);
The karId will be without version. But PermissionController code was changed and the parameter must have version. So it didn't work. When I change code to be:
String karId = LSIDUtil.getDocId(karLsid, true);
then the karId will have version and it works.
Actions