Skip to content

Commit

Permalink
html sanitize for crc rename
Browse files Browse the repository at this point in the history
  • Loading branch information
mem61 committed Jun 13, 2024
1 parent 1c8a9cd commit 06a2484
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public BodyType execute() {
// QueryInfoLocal queryInfoLocal = queryInfoLocalHome.create();
String userId = masterRenameRequestType.getUserId();
String masterId = masterRenameRequestType.getQueryMasterId();
String newQueryName = masterRenameRequestType.getQueryName();
String newQueryName = masterRenameRequestType.getQueryName().replaceAll("\\<[^>]*>","");
QueryInfoBean query = new QueryInfoBean();
masterResponseType = query.renameQueryMaster(this.getDataSourceLookup(),userId,
masterId, newQueryName);
Expand Down

0 comments on commit 06a2484

Please sign in to comment.