mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-05 15:59:45 +00:00
Unescape escaped filename, bug 39956, r=mscott, a=waterson.
This commit is contained in:
parent
a1d0ae438e
commit
402ef5ed6f
@ -16,6 +16,9 @@
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Henrik Gemal <gemal@gemal.dk>
|
||||
*/
|
||||
|
||||
function onLoad()
|
||||
@ -28,7 +31,7 @@ function onLoad()
|
||||
if (item)
|
||||
{
|
||||
docnamebox.appendChild(item);
|
||||
item.setAttribute('value', docname);
|
||||
item.setAttribute('value', unescape(docname));
|
||||
}
|
||||
}
|
||||
var saveit = document.getElementById("saveIt");
|
||||
|
Loading…
Reference in New Issue
Block a user