forked from pasosdeJesus/SIVeL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
terminar.php
36 lines (32 loc) · 1.01 KB
/
terminar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Cierra sesión de Sivel
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2004 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @version CVS: $Id: terminar.php,v 1.24.2.1 2011/09/14 14:56:18 vtamara Exp $
* @link http://sivel.sf.net
* Acceso: CONSULTA PÚBLICA
*/
/**
* Cierra sesión de Sivel
*/
require_once 'aut.php';
require_once $_SESSION['dirsitio'] . '/conf.php';
require_once 'misc.php';
cierraSesion($dsn);
echo "<html><head><title>SIVeL: Sistema de Información de Violencia " .
"Política en Línea</title></head>";
echo "<body>";
echo "<h1>SIVeL: Sistema de Información de Violencia Política en Línea</h1>";
echo "Fin de sesión<br>";
echo '<a href = "index.php">Iniciar nueva sesión</a>';
echo "</body>";
echo "</html>";
?>