8 lines
128 B
PHP
8 lines
128 B
PHP
|
<?
|
||
|
session_start();
|
||
|
$page = 'print';
|
||
|
|
||
|
|
||
|
$smarty->assign('page', $page);
|
||
|
$maincontent = $smarty->fetch('tpl_mhelp.html');
|
||
|
?>
|