diff options
author | Andy Chase <asperous2@gmail.com> | 2013-07-22 11:29:36 -0700 |
---|---|---|
committer | Andy Chase <asperous2@gmail.com> | 2013-07-22 11:29:36 -0700 |
commit | e2a769ac79ad408e94935c97a5fc1325fb838c4f (patch) | |
tree | 5f56bbc9d9290f49a6c88987561f345df49f8a3c /tests/test_framework/phpbb_test_case_helpers.php | |
parent | cc1aef47fb4f5d37415436c62067ad2dcde768bb (diff) | |
parent | b71038486e067daf0c608d73aabeb60a56e86840 (diff) | |
download | forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.gz forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.bz2 forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.xz forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.zip |
Merge branch 'develop' into ticket/11620
Diffstat (limited to 'tests/test_framework/phpbb_test_case_helpers.php')
-rw-r--r-- | tests/test_framework/phpbb_test_case_helpers.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_framework/phpbb_test_case_helpers.php b/tests/test_framework/phpbb_test_case_helpers.php index 50b2bf03ec..3d9cd10f32 100644 --- a/tests/test_framework/phpbb_test_case_helpers.php +++ b/tests/test_framework/phpbb_test_case_helpers.php @@ -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); } |