Skip to content

Commit

Permalink
Fixed issue #203 where source search refers a not existing constant.
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ OpenCms 9.0.1 - xxxxxxxxx
- Fixed alias deletion for folders
! Implemented feature request #204 type name translation for "formatter_config" files.
* Fixed issue #205 where message bundles were accessed without locale.
* Fixed issue #203 where source search refers a not existing constant.

OpenCms 9.0.0 - November 8, 2013
! Improved configuration for content formatters
Expand Down
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();
%>
%>

0 comments on commit 38ebbab

Please sign in to comment.