You are here

function aes_update_7101 in AES encryption 7

Convert old setting value for aes_viewing_method:collapsible.

File

./aes.install, line 151
Install/uninstall related functions.

Code

function aes_update_7101(&$sandbox) {
  if (variable_get('aes_viewing_method') == 'collapsible') {
    variable_set("aes_viewing_method", 'inplace');
  }
}