estara el problema en session.php
en la funcion
Código PHP:
private function verificar_logueo()
{
if(isset($_SESSION["id"]))
{
$this->id = $_SESSION["id"];
$this->username = $_SESSION["username"];
$this->logueado = true;
}
else
{
unset($this->id);
$this->logueado = false;
}
}
nota: he cambiado las variables $_SESSION usuario a username