From b8ffefe693d2ceae6446f7473cc2ef7ef09559b5 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 8 Jul 2012 09:15:20 +0200 Subject: [PATCH 1/2] Prepare release. --- package.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.xml b/package.xml index b95d90619..ff2de700d 100644 --- a/package.xml +++ b/package.xml @@ -17,9 +17,9 @@ sb@sebastian-bergmann.de yes - 2012-02-23 + 2012-07-08 - 1.1.2 + 1.1.3 1.1.0 From a529463ebdca58872c71b1a19b9470efc5c376f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Gei=DFler?= Date: Thu, 26 Jul 2012 11:52:02 +0200 Subject: [PATCH 2/2] Fixed not working codecoverage under windows --- PHP/CodeCoverage/Report/Node.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PHP/CodeCoverage/Report/Node.php b/PHP/CodeCoverage/Report/Node.php index c6322a559..13500e8ba 100644 --- a/PHP/CodeCoverage/Report/Node.php +++ b/PHP/CodeCoverage/Report/Node.php @@ -136,7 +136,9 @@ public function getId() public function getPath() { if ($this->path === NULL) { - if ($this->parent === NULL) { + if ($this->parent === NULL || + $this->parent->getPath() == NULL + ) { $this->path = $this->name; } else { $this->path = $this->parent->getPath() . '/' . $this->name;