From: axelcl Date: Mon, 14 Mar 2005 15:54:39 +0000 (+0000) Subject: Patches from Martin K�r: X-Git-Url: http://secure.phpeclipse.com Patches from Martin K�r: http://phpeclipse.de/tiki-view_forum_thread.php?forumId=3&comments_parentId=1432 --- diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java index caec4dd..b28f529 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java @@ -161,7 +161,7 @@ public class PHPDBGProxy { else filename = phpLBP.getMarker().getResource().getLocation(); String path=filename.toOSString(); - if(pathmap!=null) + if(pathmap!=null&&remote) { java.util.Iterator i=pathmap.keySet().iterator(); while(i.hasNext()) @@ -174,7 +174,7 @@ public class PHPDBGProxy { } } } - if(pathtranslation) + if(pathtranslation&&remote) { if(path.substring(0,1).equals("/")) path=path.replace('\\','/');