Skip to content

Commit 4df6ee7

Browse files
#3560 Redirect Manager: url-encode search terms in Full Text search mode (#3564)
* #3560 Redirect Manager: url-encode search terms in Full Text search mode * #3560 removed unused node in the properties dialog --------- Co-authored-by: david g. <[email protected]>
1 parent 9112dc0 commit 4df6ee7

File tree

3 files changed

+3
-2
lines changed
  • ui.apps/src/main/content/jcr_root/apps/acs-commons
    • components/utilities/manage-redirects/clientlibs
    • content/redirect-manager

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)
99
<!-- Keep this up to date! After a release, change the tag name to the latest release -->-
1010

1111
## Unreleased ([details][unreleased changes details])
12+
1213
- #3537 Content Sync: preserve mix:referenceable mixin on Assets and Content Fragments
14+
- #3560 Redirect Manager: url-encode search terms in Full Text search mode
1315
- #3536 Granite Include Obscures included Resource Type
1416
- #3562 Fixed compilation errors in iscurrentusermemberof render condition
1517

ui.apps/src/main/content/jcr_root/apps/acs-commons/components/utilities/manage-redirects/clientlibs/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
searching = true; // Set searching flag to true
379379
table.removeAttr("orderable");
380380

381-
var url = "/apps/acs-commons/content/redirect-manager.search.html" + caconfig + "?term=" + searchText;
381+
var url = "/apps/acs-commons/content/redirect-manager.search.html" + caconfig + "?term=" + encodeURIComponent(searchText);
382382
// Perform AJAX request for search
383383
$.ajax(url).done(function (response) {
384384
searching = false; // Reset searching flag once search is complete

ui.apps/src/main/content/jcr_root/apps/acs-commons/content/redirect-manager/.content.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@
440440
text="Save"
441441
type="submit"
442442
variant="primary"/>
443-
<footer jcr:primaryType="nt:unstructured"/>
444443
</items>
445444
<successresponse
446445
jcr:primaryType="nt:unstructured"

0 commit comments

Comments
 (0)