Skip to content

Commit 032e3ee

Browse files
committed
debugging recursive file dir copying
1 parent 01e9d07 commit 032e3ee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

generate/lib/functions.inc.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,12 +348,12 @@ function copydirr($fromDir,$toDir,$recursive=true,$chmod=0777,$verbose=false)
348348
if (!is_dir($to)) {
349349
mkdir($to, $chmod);
350350
$messages[]='Directory created: '.$to;
351-
//copydirr($from,$to,$recursive,$chmod,$verbose);
351+
//copydirr($from,$to,$recursive,$chmod,$verbose);
352352
}
353353
//else
354354
//{
355-
//$errors[]='cannot create directory '.$to;
356-
copydirr($from,$to,$recursive,$chmod,$verbose);
355+
//$errors[]='cannot create directory '.$to;
356+
copydirr($from,$to,$recursive,$chmod,$verbose);
357357
//}
358358
}
359359
closedir($handle);

0 commit comments

Comments
 (0)