You are here

function webform2pdf_update_7301 in Webform2PDF 7.4

Same name and namespace in other branches
  1. 7.3 webform2pdf.install \webform2pdf_update_7301()

Convert the default body filter and body token.

File

./webform2pdf.install, line 229
Webform2pdf module install/schema hooks.

Code

function webform2pdf_update_7301() {
  $default = variable_get('webform2pdf_default', '');
  if (is_numeric($default['format'])) {
    $default['format'] = 'filtered_html';
  }
  if (empty($default['p_body'])) {
    $default['p_body'] = '%email_values';
  }
  variable_set('webform2pdf_default', $default);
}