* @copyright 2003-2007 PgPool Global Development Group * @version CVS: $Id$ */ require_once('common.php'); $tpl->assign('help', basename( __FILE__, '.php')); $lang = $_SESSION[SESSION_LANG]; $help = $_GET['help']; $tpl->assign('help', $help); $tempFile = SMARTY_TEMPLATE_DIR . "/help/$lang/$help" . '.tpl'; if( ! file_exists($tempFile)) { $errorCode = 'e6'; $tpl->assign('errorCode', $errorCode); $tpl->display('error.tpl'); exit(); } $tpl->assign('isHelp', true); $tpl->display($tempFile); ?>