Skip to content
Snippets Groups Projects
Commit e932ecb9 authored by Franck Bret's avatar Franck Bret
Browse files

Use encodeURIComponent in place of encodeURI for website new page title, in...

Use encodeURIComponent in place of encodeURI for website new page title, in order to escape special chars like question mark
parent f7879c40
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@
}
}).then(function (val, field, $dialog) {
if (val) {
var url = '/website/add/' + encodeURI(val);
var url = '/website/add/' + encodeURIComponent(val);
if ($dialog.find('input[type="checkbox"]').is(':checked')) url +="?add_menu=1";
document.location = url;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment