Unescape escaped filename, bug 39956, r=mscott, a=waterson.

This commit is contained in:
nhotta%netscape.com 2000-07-21 22:14:44 +00:00
Родитель fc23a56c5b
Коммит 65004c8840
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -16,6 +16,9 @@
* Communications Corporation. Portions created by Netscape are * Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998-1999 Netscape Communications Corporation. All * Copyright (C) 1998-1999 Netscape Communications Corporation. All
* Rights Reserved. * Rights Reserved.
*
* Contributor(s):
* Henrik Gemal <gemal@gemal.dk>
*/ */
function onLoad() function onLoad()
@ -28,7 +31,7 @@ function onLoad()
if (item) if (item)
{ {
docnamebox.appendChild(item); docnamebox.appendChild(item);
item.setAttribute('value', docname); item.setAttribute('value', unescape(docname));
} }
} }
var saveit = document.getElementById("saveIt"); var saveit = document.getElementById("saveIt");