mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 08:47:45 +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)
|
public function makedirs($path)
|
||||||
{
|
{
|
||||||
if (!is_dir($path))
|
if (is_dir($path) || file_exists($path))
|
||||||
{
|
{
|
||||||
// Testing
|
var_dump($path);
|
||||||
if (file_exists($path))
|
exit;
|
||||||
{
|
|
||||||
echo $path;
|
|
||||||
}
|
|
||||||
|
|
||||||
mkdir($path, 0777, true);
|
|
||||||
}
|
}
|
||||||
|
mkdir($path, 0777, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function get_test_config()
|
static public function get_test_config()
|
||||||
|
Reference in New Issue
Block a user