-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·29 lines (26 loc) · 1.27 KB
/
index.php
File metadata and controls
executable file
·29 lines (26 loc) · 1.27 KB
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
/**************************************************************************\
* eGroupWare - KnowledgeBase *
* http://www.egroupware.org *
* Written by Dave Hall [skwashd AT phpgroupware.org] *
* ------------------------------------------------------------------------ *
* Started off as a port of phpBrain - http://vrotvrot.com/phpBrain/ *
* but quickly became a full rewrite. *
* ------------------------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$egw_info = array();
$GLOBALS['egw_info']['flags'] = array(
'currentapp' => 'phpbrain',
'noheader' => True,
'nonavbar' => True
);
include('../header.inc.php');
$obj = CreateObject('phpbrain.uikb');
$obj->index();
$GLOBALS['egw']->common->egw_exit(true);
?>