function faq_ask_block_save in FAQ_Ask 7
Implements hook_block_save().
File
- ./
faq_ask.module, line 1948  - This module is an add-on to the FAQ module that allows users with the 'ask question' permission to create a question which will be queued for an 'expert' to answer.
 
Code
function faq_ask_block_save($delta = '', $edit = array()) {
  switch ($delta) {
    case 'unanswered':
      variable_set('faq_unanswered_count', $edit['faq_unanswered_count']);
      break;
  }
  // end switch($delta)
}