Make xml valid (missing space between attrs)

This commit is contained in:
Bob Weinand 2014-10-24 14:42:18 +02:00
parent dc61a5c359
commit 3639942891

View File

@ -542,7 +542,7 @@ static int phpdbg_xml_object_property_dump(zval **zv TSRMLS_DC, int num_args, va
if (class_name[0] == '*') {
phpdbg_xml(" protection=\"protected\"");
} else {
phpdbg_xml("class=\"%s\" protection=\"private\"", class_name);
phpdbg_xml(" class=\"%s\" protection=\"private\"", class_name);
}
} else {
phpdbg_xml(" name=\"%.*s\" protection=\"public\"", hash_key->nKeyLength - 1, hash_key->arKey);