phpBB

Code Changes

File: faq.php

  Unmodified   Added   Modified   Removed
Line 25Line 25
$user->setup();

$mode = request_var('mode', '');

$user->setup();

$mode = request_var('mode', '');

 
$template_file = 'faq_body.html';


// Load the appropriate faq file
switch ($mode)


// Load the appropriate faq file
switch ($mode)

Line 35Line 36
	break;

default:

	break;

default:

		$l_title = $user->lang['FAQ_EXPLAIN'];
$user->add_lang('faq', false, true);


























		$page_title = $user->lang['FAQ_EXPLAIN'];
$ext_name = $lang_file = '';

/**
* You can use this event display a custom help page
*
* @event core.faq_mode_validation
* @var string page_title Title of the page
* @var string mode FAQ that is going to be displayed
* @var string lang_file Language file containing the help data
* @var string ext_name Vendor and extension name where the help
* language file can be loaded from
* @var string template_file Template file name
* @since 3.1.4-RC1
* @changed 3.1.11-RC1 Added template_file var
*/
$vars = array(
'page_title',
'mode',
'lang_file',
'ext_name',
'template_file',
);
extract($phpbb_dispatcher->trigger_event('core.faq_mode_validation', compact($vars)));

$l_title = $page_title;
$user->add_lang(($lang_file) ? $lang_file : 'faq', false, true, $ext_name);

	break;
}


	break;
}


Line 84Line 110
page_header($l_title);

$template->set_filenames(array(

page_header($l_title);

$template->set_filenames(array(

	'body' => 'faq_body.html')

	'body' => $template_file)

);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));


);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));