Merge remote-tracking branch 'EXreaction/ticket/11669' into develop

* EXreaction/ticket/11669:
  [ticket/11669] Fix PHP bug #55124 (recursive mkdir on /./)
This commit is contained in:
Andreas Fischer 2013-07-12 21:02:29 +02:00
commit 6c8bfcdef6

View file

@ -94,6 +94,9 @@ class phpbb_test_case_helpers
public function makedirs($path)
{
// PHP bug #55124 (fixed in 5.4.0)
$path = str_replace('/./', '/', $path);
mkdir($path, 0777, true);
}