Skip to content
Snippets Groups Projects
Commit 0797ff30 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: missing concat

parent 1abc87f6
No related branches found
No related tags found
No related merge requests found
......@@ -3061,7 +3061,7 @@ function dol_mkdir($dir, $dataroot='')
for ($i = 0; $i < $num; $i++)
{
if ($i > 0) $ccdir .= '/'.$cdir[$i];
else $ccdir = $cdir[$i];
else $ccdir .= $cdir[$i];
if (preg_match("/^.:$/",$ccdir,$regs)) continue; // Si chemin Windows incomplet, on poursuit par rep suivant
// Attention, le is_dir() peut echouer bien que le rep existe.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment