<?php
/*
Configuration variables for the site
(c) 2004-2007 by "Oleg Savchuk" <hide@address.com>
part of phpProjectMaster project
http://phpprojmaster.sourceforge.net
The contents of this file are subject to the GNU GENERAL PUBLIC LICENSE
http://www.gnu.org/copyleft/gpl.html
*/
$test_server=0; #production server
include_once("config.user.php");
$site_templ=$site_root_offline."/template";
$PID_DIR="$site_root_offline/pid";
$LOGIN_URL="/php/login.php";
$MENU_URL="/php/menu.php";
$BADACCESS_URL="/php/badaccess.php";
$PAGE_TPL="/page_tpl.html";
$PAGE_TPL_ADMIN="/page_tpl_admin.html";
$MAX_PAGE_ITEMS=20;
#######setup language
if (isset($_SESSION['lang'])){
$LANG=$_SESSION['lang'];
}else{
$LANG=''; #default - empty = English
}
$SITE_VERSION="0.7.1003";
?>