-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue #203 where source search refers a not existing constant.
Conflicts: modules/org.opencms.workplace.tools.searchindex/resources/system/workplace/admin/searchindex/sourcesearch/fileslist.jsp
- Loading branch information
Ruediger Kurz
committed
Dec 6, 2013
1 parent
31deb7b
commit 38ebbab
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...tools.searchindex/resources/system/workplace/admin/searchindex/sourcesearch/fileslist.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<%@ page import="org.opencms.workplace.tools.searchindex.sourcesearch.*, java.util.*, org.opencms.main.*"%> | ||
<% | ||
CmsSourceSearchFilesDialog wp = new CmsSourceSearchFilesDialog (pageContext, request, response); | ||
ArrayList resultList = (ArrayList)session.getAttribute(org.opencms.workplace.tools.searchindex.sourcesearch.CmsSearchReplaceSettings.ATTRIBUTE_NAME_SOURCESEARCH_RESULT_LIST); | ||
CmsSourceSearchFilesDialog wp = new CmsSourceSearchFilesDialog (pageContext, request, response); | ||
ArrayList resultList = (ArrayList)session.getAttribute(CmsSearchReplaceSettings.ATTRIBUTE_NAME_SOURCESEARCH_RESULT_LIST); | ||
wp.setList(resultList); | ||
wp.displayDialog(); | ||
%> | ||
%> |