? boost-1069922.patch ? boost-etag-only.patch Index: boost.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/boost/boost.module,v retrieving revision 1.5.2.11 diff -u -p -r1.5.2.11 boost.module --- boost.module 23 Feb 2011 09:30:59 -0000 1.5.2.11 +++ boost.module 23 Feb 2011 18:20:16 -0000 @@ -1011,7 +1011,11 @@ function _boost_rmdir($dir, $flush = TRU $objects = scandir($dir); $empty_dir = TRUE; foreach ($objects as $object) { - if ($object == "." || $object == ".." || $object == ".htaccess") { + if ($object == "." || $object == "..") { + continue; + } + if ($object == ".htaccess") { + $empty_dir = FALSE; continue; }