You are here

function forward_update_8203 in Forward 4.x

Same name and namespace in other branches
  1. 8.2 forward.install \forward_update_8203()
  2. 4.0.x forward.install \forward_update_8203()

Remove the configuration value for 'forward_max_recipients_error'.

File

./forward.install, line 223
Install, update and uninstall functions for the forward module.

Code

function forward_update_8203() {
  \Drupal::configFactory()
    ->getEditable('forward.settings')
    ->clear('forward_max_recipients_error')
    ->save(TRUE);
}