function faq_page($tid = 0) {
drupal_add_css(drupal_get_path('module', 'faq') .'/faq.css');
// get page layout
$faq_display = variable_get('faq_display', 'questions_top');
// get "back to top" link text
$back_to_top = variable_get('faq_back_to_top', t('Back to Top'));
$back_to_top = '
'
- . l(check_plain(t($back_to_top)), 'faq') . '';
+ . l(check_plain(t($back_to_top)), 'faq') . '
';
// find out if we should categorize the questions, if so get list of
// categories
$use_categories = variable_get('faq_use_categories', FALSE);
if (!module_exists("taxonomy")) $use_categories = FALSE;