index.php 359 B

12345678910
  1. <?php
  2. //é
  3. require_once('header.php') ;
  4. $tpl->assign('userList',parseUsers('./'));
  5. $tpl->assign('dir',scandir(DIR_LANG));
  6. $tpl->assign('tpmToken',(isset($_SESSION['tpmToken'])?$_SESSION['tpmToken']:''));
  7. $tpl->assign('error',(isset($_GET['error'])?addslashes(htmlentities($_GET['error'])):null));
  8. $view = 'index';
  9. require_once('footer.php');
  10. ?>