Hi, I try to flush a preset, but an error occurred.
warning: rmdir([...]\files\imagecache\team_minifoto) [function.rmdir]: Directory not empty in [..,]\modules\imagecache\imagecache.module on line 695.
After that I check the drectory's contents and I found that it's empty.
The error is that the $d directory object is never closed, and removing it while still open raise that error. I solved adding (in a clean way) the next lines:
$d->close();
before the call to rmdir() resulting in having this code:
$d->close();
rmdir($path);
I'm using latest 6.x version avaiable.
Regards
Comments
Comment #1
thepanz commentedComment #2
drewish commentedplease provide a patch.
Comment #3
thepanz commentedIn attach my patch. I'm using latest 6.x-BETA1 CVS version. Let me know if further info are needed!
Regards
Comment #4
drewish commentedthanks, committed to HEAD.
Comment #5
drewish commentedcommitted this to DRUPAL-5--2 as well...
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.