2001-05-10 03:21:09 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - User manual *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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$ */
|
|
|
|
|
|
|
|
$phpgw_flags = Array(
|
|
|
|
'currentapp' => 'manual'
|
|
|
|
);
|
|
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
|
|
|
include('../../header.inc.php');
|
2001-05-10 05:24:11 +02:00
|
|
|
$appname = 'preferences';
|
|
|
|
include(PHPGW_SERVER_ROOT.'/'.$appname.'/version.inc.php');
|
2001-05-10 03:21:09 +02:00
|
|
|
?>
|
2001-05-10 05:24:11 +02:00
|
|
|
<img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border="0"><p/>
|
|
|
|
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2">
|
|
|
|
Version: <b><?php echo $phpgw_info['server']['versions'][$appname]; ?></b>
|
2001-05-10 03:21:09 +02:00
|
|
|
</font>
|
|
|
|
<?php $phpgw->common->phpgw_footer(); ?>
|