Hello,
The new code to write to be compatible with Drupal 7 beta 2, into faq.module, line 1538 :
/**
* Implements hook_filter_info().
*/
function faq_filter_info() {
$filters['faq_embed'] = array(
'title' => t('Embed FAQ page'),
'no cache' => TRUE,
'description' => t('Embed FAQ page using [faq] type tags. Disables filter caching so not recommended for all input formats.'),
'tips callback' => 'faq_filter_tips_faq_embed',
'process callback' => '_faq_filter_process',
);
return $filters;
}
Bye. lphm
Comments
Comment #1
stella commentedAlready part of the D7 branch.