Fix encoding of cats added over AJAX. Props mdawaffe. fixes #3676
git-svn-id: http://svn.automattic.com/wordpress/trunk@5123 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eca7d3c329
commit
2190b8ea41
|
@ -2,7 +2,7 @@ addLoadEvent(function() {
|
|||
if (!theList.theList) return false;
|
||||
document.forms.addcat.submit.onclick = function(e) {return killSubmit('theList.ajaxAdder("cat", "addcat");', e); };
|
||||
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 options = document.forms['addcat'].category_parent.options;
|
||||
options[options.length] = new Option(name, id);
|
||||
|
|
Loading…
Reference in New Issue