You are here

function answers_reset_lock_info in Answers 7.4

Clear locking information cache.

2 calls to answers_reset_lock_info()
answers_best_answer_settings_form_submit in answers_best_answer/answers_best_answer.module
Process best answer configuration settings.
answers_lock_example_settings_form_submit in answers_lock_example/answers_lock_example.module
Process answers_lock configuration settings.

File

includes/answers.lock.inc, line 71
Question locking functions for the 'Answers' module.

Code

function answers_reset_lock_info() {
  drupal_static_reset('answers_locking_modules');
  cache_clear_all('answers_locking_modules', 'cache');
}