0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-live_support_client.php
<?php // $Header$ // Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization require_once ('tiki-setup.php'); include_once ('lib/live_support/lslib.php'); header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past header ("Last-Modified: " . gmdate("D, d M Y H:i:s"). " GMT"); // always modified header ("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 header("Cache-Control: post-check=0, pre-check=0", false); header ("Pragma: no-cache"); // HTTP/1.0 if ($feature_live_support != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_live_support"); $smarty->display("error.tpl"); die; } if (!$lslib->operators_online()) { header ("location: tiki-live_support_message.php"); die; } $smarty->assign('senderId', md5(uniqid('.'))); if ($user) { $smarty->assign('user_email', $userlib->get_user_email($user)); } // Display the template $smarty->display("tiki-live_support_client.tpl"); ?>