You are here

function sexybookmarks_update_7200 in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2

Same name and namespace in other branches
  1. 7 sexybookmarks.install \sexybookmarks_update_7200()

Update block cache type.

File

./sexybookmarks.install, line 96
Install, update and uninstall functions for the SexyBookmarks module.

Code

function sexybookmarks_update_7200() {
  db_update('block')
    ->fields(array(
    'cache' => -1,
  ))
    ->condition('module', 'sexybookmarks')
    ->execute();
  return t('Updated Block cache type.');
}