You are here

function ife_session_cleanup in Inline Form Errors 7

Clear the session after the form has been build.

1 string reference to 'ife_session_cleanup'
ife_form_alter in ./ife.module
Implements hook_form_alter().

File

./ife.module, line 336
Drupal hooks

Code

function ife_session_cleanup($form, $form_state) {
  if (isset($_SESSION['ife'])) {
    unset($_SESSION['ife']);
  }
  return $form;
}