#74: Suppress warning on mkdir due to a race condition for multiple uploads

This commit is contained in:
Andy Heathershaw 2018-07-12 06:38:56 +01:00
parent 534c8f6090
commit 036814705f
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class FileHelper
if (!file_exists($path))
{
mkdir($path, 0755, true);
@mkdir($path, 0755, true);
}
return $path;