Double escaped URL components

git-svn-id: svn://10.0.0.236/trunk@255627 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ghendricks%novell.com 2008-12-23 20:02:12 +00:00
parent 84ca97562f
commit 4e70de294b
3 changed files with 3 additions and 3 deletions

View File

@ -1546,7 +1546,7 @@ linkPopup = function(params){
plain: true,
shadow: false,
items: [new Ext.form.TextField({
value: encodeURI(l.protocol + '//' + l.host + pathprefix + '/' + file + '?' + jsonToSearch(params,'',['ctype'])),
value: l.protocol + '//' + l.host + pathprefix + '/' + file + '?' + jsonToSearch(params,'',['ctype']),
width: 287
})]
});

View File

@ -1588,7 +1588,7 @@ linkPopup = function(params){
plain: true,
shadow: false,
items: [new Ext.form.TextField({
value: encodeURI(l.protocol + '//' + l.host + pathprefix + '/' + file + '?' + jsonToSearch(params,'',['ctype'])),
value: l.protocol + '//' + l.host + pathprefix + '/' + file + '?' + jsonToSearch(params,'',['ctype']),
width: 287
})]
});

File diff suppressed because one or more lines are too long