You are here

function webform_update_6316 in Webform 6.3

Remove the Webform Debug variable.

File

./webform.install, line 1293
Webform module install/schema hooks.

Code

function webform_update_6316() {
  $ret = array();
  variable_del('webform_debug');
  $ret[] = array(
    'success' => TRUE,
    'query' => t('Removed the webform_debug variable which is no longer used.'),
  );
  return $ret;
}