//
// $Id$
+require_once 'lib/Usuario.php';
+
// Arranca la sesión
session_start();
function pagina_cabecera($titulo = '')
{
+ header('Content-type: text/html; charset=ISO-8859-1');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?php
}
+function error($msg)
+{
+ printf('<p style="color: red">%s</p>', $msg);
+}
+
+function ok($msg)
+{
+ printf('<p style="color: green">%s</p>', $msg);
+}
+
+function pagina_check_login($redirect = true)
+{
+ if (!@$_SESSION['user'])
+ {
+ // Avisamos a donde hay que volver
+ if ($redirect) $_SESSION['login_redirect'] = basename($_SERVER['PHP_SELF']);
+ include 'admin.login.php'; // Mostramos el login
+ exit;
+ }
+}
+
?>
\ No newline at end of file