<?php
/**
* PHP versions 4 and 5
*
* LICENSE: This source file is subject to version 3.0 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to hide@address.com so we can mail you a copy immediately.
*
* @package QuickTalk
* @author Philippe Vandenberghe <hide@address.com>
* @copyright 2008-2012 The PHP Group
* @version 2.5 build:20100924
*/
session_start();
require_once('bin/qtf_init.php');
// INITIALISE
$oVIP->selfurl = 'qtf_privacy.php';
$oVIP->selfname = $L['Legal'];
// --------
// HTML START
// --------
$oVIP->arrJava=null;
include('qtf_p_header.php');
HtmlMsg(0,'620px','',$oVIP->selfname);
include(Translate('sys_rules.txt'));
if ( $_SESSION[QT]['register_coppa']=='1' ) include(Translate('sys_rules_coppa.txt'));
HtmlMsg(1);
HtmlMsg(0,'620px','','About QuickTalk forum');
$strFile = Translate('sys_about.php');
if ( file_exists($strFile) ) { include($strFile); } else { echo 'Missing file:<br/>'.$strFile; }
echo '<p>
<a href="http://validator.w3.org/check?uri=referer"><img src="admin/vxhtml10.png" alt="Valid XHTML 1.0 Strict" height="31" width="88"/></a>
<a href="http://jigsaw.w3.org/css-validator/"><img src="admin/vcss.png" alt="Valid CSS" height="31" width="88"/></a>
<a href="http://www.w3.org/WAI/WCAG1AAA-Conformance" title="Explanation of Level Triple-A Conformance"><img height="31" width="88" src="admin/wcag1aaa.png" alt="Level Triple-A conformance icon, W3C-WAI Web Content Accessibility Guidelines 1.0"/></a>
';
// ----------
// module rss
if ( UseModule('rss') )
{
echo '<img height="31" width="88" src="admin/valid-rss-rogers.png" alt="[Valid RSS]" title="Valid RSS feed"/>
<img height="31" width="88" src="admin/valid-atom.png" alt="[Valid RSS]" title="Valid RSS feed"/>
';
}
// ----------
echo '</p>
';
HtmlMsg(1);
// HTML END
include('qtf_p_footer.php');
?>