Subversion Repositories Sites.tela-botanica.org

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 david 1
<?php
2
 
3
/***************************************************************************\
4
 *  SPIP, Systeme de publication pour l'internet                           *
5
 *                                                                         *
6
 *  Copyright (c) 2001-2005                                                *
7
 *  Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James  *
8
 *                                                                         *
9
 *  Ce programme est un logiciel libre distribue sous licence GNU/GPL.     *
10
 *  Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne.   *
11
\***************************************************************************/
12
 
13
 
14
include ("inc_version.php3");
15
 
16
 
17
include_ecrire ("inc_auth.php3");
18
include_ecrire ("inc_admin.php3");
19
 
20
$action = _T('texte_unpack');
21
 
22
debut_admin($action);
23
 
24
$hash = calculer_action_auteur("unpack");
25
 
26
fin_admin($action);
27
 
28
if (@file_exists("../spip_loader.php3"))
29
	@header("Location: ../spip_loader.php3?hash=$hash&id_auteur=$connect_id_auteur");
30
else if (@file_exists("../spip_unpack.php3"))
31
	@header("Location: ../spip_unpack.php3?hash=$hash&id_auteur=$connect_id_auteur");
32
else
33
	@header("Location: ../spip_loader.php3?hash=$hash&id_auteur=$connect_id_auteur");
34
 
35
?>