diff -wup --recursive boost/boost.admin.inc boost-patched/boost.admin.inc --- boost/boost.admin.inc 2011-04-12 16:02:28.000000000 -0400 +++ boost-patched/boost.admin.inc 2011-06-07 15:21:58.000000000 -0400 @@ -1647,11 +1647,10 @@ function boost_reset_database_file_submi $GLOBALS['conf']['boost_ignore_flush'] = 0; if (boost_cache_clear_all()) { db_query("TRUNCATE {boost_cache}"); - db_query("TRUNCATE {boost_cache_settings}"); db_query("TRUNCATE {boost_cache_relationships}"); db_query("TRUNCATE {boost_crawler}"); _boost_rmdir_rf(BOOST_ROOT_CACHE_DIR, TRUE, TRUE, TRUE); - drupal_set_message(t('Boost: Static page cache & 4 database tables cleared.')); + drupal_set_message(t('Boost: Static page cache & 3 database tables cleared.')); } else { drupal_set_message(t('Boost: Set "Ignore cache flushing:" to \'Disabled\' in the boost advanced settings & try again.', array('!link' => url('admin/settings/performance/boost', array('fragment' => 'edit-boost-ignore-flush-0-wrapper')))), 'warning'); diff -wup --recursive boost/boost.drush.inc boost-patched/boost.drush.inc --- boost/boost.drush.inc 2011-04-12 16:02:28.000000000 -0400 +++ boost-patched/boost.drush.inc 2011-06-07 15:15:02.000000000 -0400 @@ -79,11 +79,10 @@ function boost_drush_cache_reset() { $GLOBALS['conf']['boost_ignore_flush'] = 0; if (boost_cache_clear_all()) { db_query("TRUNCATE {boost_cache}"); - db_query("TRUNCATE {boost_cache_settings}"); db_query("TRUNCATE {boost_cache_relationships}"); db_query("TRUNCATE {boost_crawler}"); _boost_rmdir_rf(BOOST_ROOT_CACHE_DIR, TRUE, TRUE, TRUE); - print drush_log(dt('Boost: Static page cache & 4 database tables cleared.'), 'ok'); + print drush_log(dt('Boost: Static page cache & 3 database tables cleared.'), 'ok'); } else { print drush_log(dt('Boost: Static page cache & database tables NOT cleared'), 'error');