");
// Settings
if (file_exists(INCLOCAL."settings.inc")) require(INCLOCAL."settings.inc");
// Default settings
if (file_exists(INCDEFAULT."defaults.inc")) require(INCDEFAULT."defaults.inc");
// Includes
require (INCROOT."baza.inc");
require (INCROOT."profil.inc");
require (INCROOT."element.inc");
require (INCROOT."struct.inc");
// Addons
require (INCROOT."tools.inc");
require (INCROOT."decode.inc");
require (INCROOT."fckeditor.inc");
require (INCROOT."uploader.inc");
// PDF
define('FPDF_FONTPATH',INCDEFAULT.'font/');
require(INCROOT."fpdf.inc");
require(INCROOT."class.multicelltag.php");
require(INCROOT."class.string_tags.php");
$conn = new DB();
$profil = new Profil($conn);
$profil->build();
// koniec
// patch na zatwierdzanie sprawozdan finansowe
$profil->profil['spr_zatw']=1;
if ($profil->login) {
$x=$conn->getone('select zatw from budzet_sprawozdanie where id="'.$profil->profil['szkola'].'"','zatw');
$profil->profil['spr_zatw']=$x;
}
if ($profil->profil['grupa']=='admin')
$profil->profil['spr_zatw']=0;
// patch na zatwierdzanie sprawozdan merytoryczne
$profil->profil['spr_zatw2']=1;
if ($profil->login) {
$x=$conn->getone('select zatw from budzet_sprawozdanie2 where id="'.$profil->profil['szkola'].'"','zatw');
$profil->profil['spr_zatw2']=$x;
}
if ($profil->profil['grupa']=='admin')
$profil->profil['spr_zatw2']=0;
$struct = new Struct($conn,$profil);
// Headers
header ("Content-type: text/html; charset=".CHARSET);
header ("Cache-control: no-cache");
header ("Pragma: no-cache");
$struct->build();