<?php
/**
* @author evilnapsis
**/

define("ROOT", dirname(__FILE__));

// Set application timezone to GMT-4 (Bolivia, La Paz).
// Required because PHP ini defaults to UTC; without this, date('H:i'),
// date('Y-m-d'), and strtotime() yield UTC values that are 4 hours ahead of
// the local clock that clinical users expect. Fixes: datetime-split change
// (#2322) where the form default hour was off by 4 hours.
date_default_timezone_set('America/La_Paz');

$debug= true;
if($debug){
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
}

include "core/autoload.php";

ob_start();
Core::$root="";

// si quieres que se muestre las consultas SQL debes decomentar la siguiente linea
// Core::$debug_sql = false;

$lb = new Lb();
$lb->start();

?>
