fix first part of bug #677, for second see feature request #688.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugTarget.java
index ec0ca16..43f7c9c 100644 (file)
@@ -402,10 +402,15 @@ public class XDebugTarget extends XDebugElement implements IDebugTarget, IDebugE
                System.out.println("max depth:"+a2);*/
                
                
-               int id1 = fDebugConnection.featureSet("max_depth", "100" );
+               int id1 = fDebugConnection.featureSet("max_depth", "1024" );
                XDebugResponse response1 = getResponse(id1);
                if (response1.getAttributeValue("success").equals("1") ) {
-                       System.out.println("Set depth to 100 (hack)");
+                       System.out.println("Set depth to 1024 (hack)");
+               }
+               int id2 = fDebugConnection.featureSet("max_children", "1024" );
+               XDebugResponse response2 = getResponse(id2);
+               if (response2.getAttributeValue("success").equals("1") ) {
+                       System.out.println("Set children to 1024 (hack)");
                }
                
                installDeferredBreakpoints();