You are here

function multiple_registration_exit in Multiple Registration 7

Implements hook_exit().

File

./multiple_registration.module, line 307
Add ability to create several registration pages.

Code

function multiple_registration_exit() {
  $clear_cache =& drupal_static('multiple_registration_cc');
  if ($clear_cache) {
    drupal_flush_all_caches();
  }
}