diff options
-rw-r--r-- | phpdbg_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_utils.c b/phpdbg_utils.c index bbc8b0c1d9..85b6eeb3b5 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -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); |