You are here

function raven_update_7201 in Raven: Sentry Integration 7.3

Same name and namespace in other branches
  1. 7.4 raven.install \raven_update_7201()
  2. 7.2 raven.install \raven_update_7201()

Migrate raven_watchdog_page_not_found to raven_ignored_types.

File

./raven.install, line 44
Install, update, and uninstall functions for the Raven module.

Code

function raven_update_7201() {
  if (!variable_get('raven_watchdog_page_not_found', FALSE)) {
    variable_set('raven_ignored_types', 'page not found');
  }
  variable_del('raven_watchdog_page_not_found');
}