File size: 705B
<?php
/**
* Ant0ha's project
*
* @package
* @author Anton Pisarenko <[email protected]>
* @copyright Copyright (c) 2006 - 2010, Anton Pisarenko
* @license http://ant0ha.ru/license.txt
* @link http://ant0ha.ru
*/
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
//---------------------------------------------
ini_set('error_reporting', 7);
ini_set('session.cookie_domain', $_SERVER['HTTP_HOST']);
ini_set('register_globals', 'Off');
ini_set('session.save_path', ROOT .'tmp/');
ini_set('magic_quotes_gpc', 'Off');
ini_set('magic_quotes_runtime', 'Off');
ini_set('date.timezone', 'Europe/Moscow');
ini_set('allow_call_time_pass_reference', 'On');
?>