[go: up one dir, main page]

Menu

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

Download this file

23 lines (19 with data), 550 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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();
$core->show_page();
print $core->get_version();
?>