Fix encoding of cats added over AJAX. Props mdawaffe. fixes #3676

git-svn-id: https://develop.svn.wordpress.org/trunk@5123 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-03-27 23:51:26 +00:00
parent cb5bbf3ee4
commit 98e9d2b65c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ addLoadEvent(function() {
if (!theList.theList) return false; if (!theList.theList) return false;
document.forms.addcat.submit.onclick = function(e) {return killSubmit('theList.ajaxAdder("cat", "addcat");', e); }; document.forms.addcat.submit.onclick = function(e) {return killSubmit('theList.ajaxAdder("cat", "addcat");', e); };
theList.addComplete = function(what, where, update, transport) { theList.addComplete = function(what, where, update, transport) {
var name = getNodeValue(transport.responseXML, 'name'); var name = getNodeValue(transport.responseXML, 'name').unescapeHTML();
var id = transport.responseXML.getElementsByTagName(what)[0].getAttribute('id'); var id = transport.responseXML.getElementsByTagName(what)[0].getAttribute('id');
var options = document.forms['addcat'].category_parent.options; var options = document.forms['addcat'].category_parent.options;
options[options.length] = new Option(name, id); options[options.length] = new Option(name, id);