From: robekras Date: Sat, 26 Nov 2005 14:19:23 +0000 (+0000) Subject: 1) Fixed bug #1366994 . bool and resource variables has not been added to main variab... X-Git-Url: http://git.phpeclipse.com 1) Fixed bug #1366994 . bool and resource variables has not been added to main variable list. --- diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPDBGEvalString.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPDBGEvalString.java index 7c71364..d74a154 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPDBGEvalString.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPDBGEvalString.java @@ -328,7 +328,7 @@ public class PHPDBGEvalString { list.add (item); if (var_list != null) { - list.add (item); + var_list.add (item); } return true; @@ -381,7 +381,7 @@ public class PHPDBGEvalString { list.add (item); if (var_list != null) { - list.add (item); + var_list.add (item); } return true;