You are here

function email_verify_update_7100 in Email Verify 7.2

Same name and namespace in other branches
  1. 7 email_verify.install \email_verify_update_7100()

Changes the email_verify_on variable to email_verify_active.

File

./email_verify.install, line 50
Install, update and uninstall functions for this module.

Code

function email_verify_update_7100() {
  $email_verify_on = variable_get('email_verify_on', NULL);
  if ($email_verify_on !== NULL) {
    variable_set('email_verify_active', $email_verify_on);
    variable_del('email_verify_on');
  }
}