summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-10-24 14:42:18 +0200
committerBob Weinand <bobwei9@hotmail.com>2014-10-24 14:42:18 +0200
commit36399428919ef518bcd744e120e48c00610a8b86 (patch)
tree5bf818a7d38bb24c0f916b90d34455d8078086eb
parentdc61a5c359d84c8963bc2ff1b7b0fc2200caf64a (diff)
downloadphp-git-36399428919ef518bcd744e120e48c00610a8b86.tar.gz
Make xml valid (missing space between attrs)
-rw-r--r--phpdbg_utils.c2
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);