~ocsinventory-dev/ocsinventory-ocsreports/stable-2.1

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
<?php 
//====================================================================================
// OCS INVENTORY REPORTS
// Copyleft Erwan GOALOU 2010
// Web: http://www.ocsinventory-ng.org
//
// This code is open source and may be copied and modified as long as the source
// code is always made freely available.
// Please refer to the General Public Licence http://www.gnu.org/ or Licence.txt
//====================================================================================

require("require/fichierConf.class.php");
@session_start();
if (get_magic_quotes_gpc()) {
    function magicQuotes_awStripslashes(&$value, $key) {$value = stripslashes($value);}
    $gpc = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
    array_walk_recursive($gpc, 'magicQuotes_awStripslashes');
}
require_once ('require/function_index.php');
$sleep=1;
$debut = getmicrotime();
require ('require/header.php');
addLog('PAGE',$protectedGet[PAG_INDEX]);
if( !isset($protectedGet["popup"] ))
	require (FOOTER_HTML);



?>