Adding fix for DBG on file lookup issue. It would not find the local file that had...
[phpeclipse.git] / net.sourceforge.phpeclipse.launching / src / net / sourceforge / phpdt / internal / launching / PHPSourceLocator.java
index d395616..d032da5 100644 (file)
@@ -156,7 +156,7 @@ public class PHPSourceLocator implements IPersistableSourceLocator, ISourcePrese
                        IFile[] files = root.findFilesForLocation(filePath);
                        for (int i = 0; i < files.length; i++) {
                                if (files[i].getProject().equals(proj)) {
-                                       fileName = proj.getLocation().append(files[i].getProjectRelativePath()).toOSString();
+                                       fileName = proj.getFullPath().append(files[i].getProjectRelativePath()).toOSString();
                                        break;
                                }
                        }