]> granicus.if.org Git - php/commitdiff
Make xml valid (missing space between attrs)
authorBob Weinand <bobwei9@hotmail.com>
Fri, 24 Oct 2014 12:42:18 +0000 (14:42 +0200)
committerBob Weinand <bobwei9@hotmail.com>
Fri, 24 Oct 2014 12:42:18 +0000 (14:42 +0200)
phpdbg_utils.c

index bbc8b0c1d93cfcfe103c900b9c7ca8cff64d9184..85b6eeb3b52723ed404387f227f4cd38091d2263 100644 (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);