You are here

function slick_devel_update_7002 in Slick extras 7.2

Replace variable "slick_debug" with "slick_devel_debug".

File

slick_devel/slick_devel.install, line 33
Install, update and uninstall functions for the Slick Development module.

Code

function slick_devel_update_7002() {
  if (variable_get('slick_debug', FALSE)) {
    variable_del('slick_debug');
    variable_set('slick_devel_debug', TRUE);
  }
}