]> git.sur5r.net Git - contagged/blob - init.php
3130292d46b87b9ba9b202ee21a77ff2a8eff155
[contagged] / init.php
1 <?
2   require_once('config.php');
3   require_once('fields.php');
4   require_once('lang/'.$conf['lang'].'.php');
5   require_once('functions.php');
6   require_once('template.php');
7   require_once('smarty/Smarty.class.php');
8
9   define('NL',"\n");
10
11   //init session
12   session_name("ldapab");
13   session_start();
14
15   //kill magic quotes
16   if (get_magic_quotes_gpc()) {
17     if (!empty($_GET))    remove_magic_quotes($_GET);
18     if (!empty($_POST))   remove_magic_quotes($_POST);
19     if (!empty($_COOKIE)) remove_magic_quotes($_COOKIE);
20     if (!empty($_REQUEST)) remove_magic_quotes($_REQUEST);
21     if (!empty($_SESSION)) remove_magic_quotes($_SESSION);
22     ini_set('magic_quotes_gpc', 0);
23   }
24   set_magic_quotes_runtime(0);
25
26   function remove_magic_quotes(&$array) {
27     foreach (array_keys($array) as $key) {
28       if (is_array($array[$key])) {
29         remove_magic_quotes($array[$key]);
30       }else {
31         $array[$key] = stripslashes($array[$key]);
32       }
33     }
34   }
35
36   //prepare SMARTY object
37   $smarty = new Smarty;
38   $smarty->compile_dir   = './cache';
39   $smarty->use_sub_dirs  = 0;
40   $smarty->template_dir  = './templates';
41   $smarty->force_compile = $conf['smartycompile'];
42 ?>