URI decode path in rename dialog (#1447)
This commit is contained in:
@@ -218,8 +218,8 @@ $(document).ready(function() {
|
||||
$('#minibutton-rename-page').click(function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var path = pagePath();
|
||||
var oldName = pageName();
|
||||
var path = decodeURI(pagePath());
|
||||
var oldName = decodeURI(pageName());
|
||||
var context_blurb =
|
||||
"Renamed page will be under " +
|
||||
"<span class='path'>" + htmlEscape(cleanPath(path)) + "</span>" +
|
||||
|
||||
Reference in New Issue
Block a user