function raven_update_7201 in Raven: Sentry Integration 7.3
Same name and namespace in other branches
- 7.4 raven.install \raven_update_7201()
- 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');
}