assign('msg', tra('This feature is disabled') . ': feature_tikitests'); $smarty->display('error.tpl'); die; } if ($tiki_p_admin_tikitests != 'y' and $tiki_p_edit_tikitests != 'y') { $smarty->assign('msg', tra('You do not have permission to do that')); $smarty->display('error.tpl'); die; } $smarty->assign('tidy', extension_loaded('tidy')); $smarty->assign('http', extension_loaded('http')); $smarty->assign('curl', extension_loaded('curl')); if (isset($_POST['action']) and isset($_POST['filename']) and trim($_POST['filename']) != '') { setcookie('tikitest_record', '1', 0, '/'); setcookie('tikitest_filename', trim($_POST['filename']), 0, '/'); if (isset($_REQUEST['current_session'])) { header('Location: ../tiki-index.php'); } else { header('Location: ../tiki-logout.php'); } die(); } $smarty->assign('mid', 'tiki-tests_record.tpl'); $smarty->assign('title', tra('TikiTest Record')); $smarty->display('tiki.tpl');