[go: up one dir, main page]

Menu

[r5]: / trunk / index.php  Maximize  Restore  History

Download this file

25 lines (21 with data), 624 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
<?php
// +--------------------------------------------+
// | Twiggi web-based groupware. |
// | |
// | For copyright and license information |
// | please read the COPYRIGHT file. |
// +--------------------------------------------+
$slash = DIRECTORY_SEPARATOR;
$root = dirname(__FILE__);
$startup = $root.$slash."core".$slash."startup.inc.php";
if (!file_exists($startup))
{
die ("FATAL ERROR: Twiggi 2 installation incomplete.");
}
require_once($startup);
$core = catalog::get_core();
$database = catalog::get_database();
$conn = $database->get_connection();
$core->show_page();
print $core->get_version();
?>