[go: up one dir, main page]

Menu

[r7]: / trunk / core / startup.inc.php  Maximize  Restore  History

Download this file

28 lines (23 with data), 720 Bytes

 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
<?php
// +--------------------------------------------+
// | Twiggi web-based groupware. |
// | |
// | For copyright and license information |
// | please read the COPYRIGHT file. |
// +--------------------------------------------+
error_reporting(E_ALL);
// Load the kernel...
$core_files = array( $root.$slash."core".$slash."global.inc.php",
$root.$slash."core".$slash."core.class.php",
$root.$slash."core".$slash."catalog.class.php",
$root.$slash."core".$slash."database.class.php",
$root.$slash."core".$slash."template.class.php" );
foreach ($core_files as $core_file)
{
if (!file_exists($core_file))
{
die("FATAL ERROR: file is missing: ".$core_file);
}
require_once($core_file);
}
?>