Skip to content

Commit

Permalink
- Merge [4453].
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 10, 2009
1 parent fc3455d commit d215bbe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions PHPUnit/Util/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,10 @@ public function handlePHPConfiguration()
$configuration = $this->getPHPConfiguration();

foreach ($configuration['ini'] as $name => $value) {
if (defined($value)) {
$value = constant($value);
}

ini_set($name, $value);
}

Expand Down

0 comments on commit d215bbe

Please sign in to comment.