Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Duplicate
-
ManifoldCF 2.0.1
-
None
-
Windows Server 2008R2
Tomcat 7.0.57
Java 1.8.0_25
Firefox, Chrome, IE
Description
When trying to create a Livelink crawl job, paths tab, you pick a Livelink folder to add to the paths spec on the job. Clicking the + sign creates the path ok, but when you click the ADD button to add it to the crawl spec, browser just hangs forever.
Looks like the GUI code is pulling a wrong variable out of the form it was sent. Appears to need to pull s0_specpath rather than specpath.
Suggested simple fix in \ManifoldCF2.0.1\connectors\livelink\connector\src\main\java\org\apache\manifoldcf\crawler\connectors\livelink\LivelinkConnector.java
3265c3267
< String path = variableContext.getParameter("specpath");
—
> String path = variableContext.getParameter(seqPrefix+"specpath");
Attachments
Issue Links
- duplicates
-
CONNECTORS-1159 Cannot add Livelink folder to job
- Resolved