You are here

function boost_remove_settings_db in Boost 6

Removes info from boost database.

Parameters

$csid: Cache Settings primary ID

1 call to boost_remove_settings_db()
boost_block_db_rm_settings_form_submit in ./boost.module
Removes page specific settings in the boost cache database.

File

./boost.module, line 4225
Provides static file caching for Drupal text output. Pages, Feeds, ect...

Code

function boost_remove_settings_db($csid) {
  db_query("DELETE FROM {boost_cache_settings} WHERE csid = %d", $csid);
}