Version 1.7b

This commit is contained in:
nemunaire 2008-11-04 12:00:00 +01:00
commit 8a8280758b
716 changed files with 4361 additions and 33524 deletions

View file

@ -0,0 +1,18 @@
<?php
if(!defined('INDEX')) define('INDEX', 1);
load_conf(_FCORE."profiles/servers.xconf", $config);
require_once(_FCORE."common.php");
//On prépare le gestionnaire de templates
$template = new Template();
$template->assign('date',strftime("%A %d %B %Y %H:%M"));
$template->assign('datehb',str_replace('.','',strftime("/%a %d %b %Y/%H%M %S")));
$template->assign('link', array_map('url', $config['link']));
$template->assign('servers_name', $config['server_name']);
$template->assign('server_url', $config['server_url']);
$template->display('cms/secours.tpl');
exit;
?>