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
// Appel spip
4
if (!function_exists('find_in_path')) {
5
	include ('ecrire/inc_version.php3');
6
}
7
// Reglage du $fond
8
if (isset($contexte_inclus['fond']))
9
	$fond = $contexte_inclus['fond'];
10
else if (isset($_GET["fond"]))
11
	$fond = $_GET["fond"];
12
else
13
	$fond = '404';
14
 
15
// Reglage du $delais
16
// par defaut : la valeur existante (inclusion) ou sinon SPIP fera son reglage
17
if (isset($contexte_inclus['delais']))
18
	$delais = $contexte_inclus['delais'];
19
 
20
// Securite
21
if (strstr($fond, '/')) {
22
	die ("Faut pas se gener");
23
}
24
if (!find_in_path("$fond.html")) {
25
	spip_log("page.php3: find_in_path ne trouve pas le squelette $fond");
26
	$fond = '404';
27
}
28
include ("inc-public.php3");
29
 
30
?>