mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 16:27:38 +02:00
[feature/twig] Trying some new debug code for this mkdir error
PHPBB3-11598
This commit is contained in:
@@ -94,16 +94,12 @@ class phpbb_test_case_helpers
|
||||
|
||||
public function makedirs($path)
|
||||
{
|
||||
if (!is_dir($path))
|
||||
if (is_dir($path) || file_exists($path))
|
||||
{
|
||||
// Testing
|
||||
if (file_exists($path))
|
||||
{
|
||||
echo $path;
|
||||
}
|
||||
|
||||
mkdir($path, 0777, true);
|
||||
var_dump($path);
|
||||
exit;
|
||||
}
|
||||
mkdir($path, 0777, true);
|
||||
}
|
||||
|
||||
static public function get_test_config()
|
||||
|
Reference in New Issue
Block a user