From 801d2dc157b4bfdd3520a153c7b11b04304579a8 Mon Sep 17 00:00:00 2001 From: robekras Date: Sat, 26 Nov 2005 14:19:23 +0000 Subject: [PATCH] 1) Fixed bug #1366994 . bool and resource variables has not been added to main variable list. --- .../debug/core/model/PHPDBGEvalString.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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; -- 1.7.1