Modified: xdebug/branches/xdebug_2_1/tests/bug00421.phpt =================================================================== --- xdebug/branches/xdebug_2_1/tests/bug00421.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/branches/xdebug_2_1/tests/bug00421.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -42,7 +42,7 @@ -> context_get -i 5 -c 0 - + -> detach -i 6 Modified: xdebug/branches/xdebug_2_1/tests/bug00494.phpt =================================================================== --- xdebug/branches/xdebug_2_1/tests/bug00494.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/branches/xdebug_2_1/tests/bug00494.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -33,7 +33,7 @@ -> property_get -i 4 -n o - + -> detach -i 5 Modified: xdebug/branches/xdebug_2_1/tests/bug00530.phpt =================================================================== --- xdebug/branches/xdebug_2_1/tests/bug00530.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/branches/xdebug_2_1/tests/bug00530.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -42,15 +42,15 @@ -> property_get -i 5 -n this - + -> property_get -i 6 -n this -p 0 - + -> property_get -i 7 -n this -p 1 - + -> detach -i 8 Modified: xdebug/branches/xdebug_2_1/xdebug_var.c =================================================================== --- xdebug/branches/xdebug_2_1/xdebug_var.c 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/branches/xdebug_2_1/xdebug_var.c 2011-02-24 12:00:22 UTC (rev 3403) @@ -688,17 +688,6 @@ xdebug_xml_add_attribute_ex(node, "classname", xdstrdup(class_name), 0, 1); xdebug_xml_add_attribute(node, "children", (myht && zend_hash_num_elements(myht))?"1":"0"); - /** Temporary additional property **/ - { - xdebug_xml_node *pnode; - - pnode = xdebug_xml_node_init("property"); - xdebug_xml_add_attribute(pnode, "name", "CLASSNAME"); - xdebug_xml_add_attribute(pnode, "type", "string"); - xdebug_xml_add_text(pnode, xdstrdup(class_name)); - xdebug_xml_add_child(node, pnode); - } - if (myht) { if (myht->nApplyCount < 1) { xdebug_xml_add_attribute_ex(node, "numchildren", xdebug_sprintf("%d", zend_hash_num_elements(myht)), 0, 1); Modified: xdebug/trunk/tests/bug00421.phpt =================================================================== --- xdebug/trunk/tests/bug00421.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/trunk/tests/bug00421.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -42,7 +42,7 @@ -> context_get -i 5 -c 0 - + -> detach -i 6 Modified: xdebug/trunk/tests/bug00494.phpt =================================================================== --- xdebug/trunk/tests/bug00494.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/trunk/tests/bug00494.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -33,7 +33,7 @@ -> property_get -i 4 -n o - + -> detach -i 5 Modified: xdebug/trunk/tests/bug00530.phpt =================================================================== --- xdebug/trunk/tests/bug00530.phpt 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/trunk/tests/bug00530.phpt 2011-02-24 12:00:22 UTC (rev 3403) @@ -42,15 +42,15 @@ -> property_get -i 5 -n this - + -> property_get -i 6 -n this -p 0 - + -> property_get -i 7 -n this -p 1 - + -> detach -i 8 Modified: xdebug/trunk/xdebug_var.c =================================================================== --- xdebug/trunk/xdebug_var.c 2011-02-21 22:13:24 UTC (rev 3402) +++ xdebug/trunk/xdebug_var.c 2011-02-24 12:00:22 UTC (rev 3403) @@ -1016,17 +1016,6 @@ xdebug_xml_add_attribute_ex(node, "classname", xdstrdup(class_name), 0, 1); xdebug_xml_add_attribute(node, "children", (myht && zend_hash_num_elements(myht))?"1":"0"); - /** Temporary additional property **/ - { - xdebug_xml_node *pnode; - - pnode = xdebug_xml_node_init("property"); - xdebug_xml_add_attribute(pnode, "name", "CLASSNAME"); - xdebug_xml_add_attribute(pnode, "type", "string"); - xdebug_xml_add_text(pnode, xdstrdup(class_name)); - xdebug_xml_add_child(node, pnode); - } - if (myht) { if (myht->nApplyCount < 1) { xdebug_xml_add_attribute_ex(node, "numchildren", xdebug_sprintf("%d", zend_hash_num_elements(myht)), 0, 1);