Source for file help.php
Documentation is available at help.php
require_once './include/version.php';
require_once './lib/core.php';
require ('smarty/libs/Smarty.class.php');
$smarty->plugins_dir[] = 'include';
require_once $smarty->_get_plugin_filepath('function', 'html_doctype');
$login = new login(true);
$smarty->assign('login', $login);
header( 'Location: login.php' ) ;
$smarty->assign('notifMsg', $notify);
$smarty->display('header.tpl');
$smarty->display('help.tpl');
$smarty->display('footer.tpl');
|