You are here

function devel_update_7006 in Devel 7

Change variable 'dev_mem' to 'devel_memory'.

File

./devel.install, line 131

Code

function devel_update_7006() {
  if (variable_get('dev_mem', NULL) !== NULL) {
    variable_set('devel_memory', variable_get('dev_mem'));
  }
  variable_del('dev_mem');
}