2000-12-23 01:45:58 +01:00
|
|
|
<?php
|
2007-05-26 21:06:12 +02:00
|
|
|
/**
|
2016-05-16 16:27:33 +02:00
|
|
|
* EGroupware: About informations
|
2007-05-26 21:06:12 +02:00
|
|
|
*
|
2016-05-16 16:27:33 +02:00
|
|
|
* rewrite of the old PHPLib based about page
|
|
|
|
* it now uses eTemplate2
|
|
|
|
* new class about ist stored at api/src/Framework/About.php
|
2007-05-26 21:06:12 +02:00
|
|
|
*
|
2016-05-16 16:27:33 +02:00
|
|
|
* LICENSE: GPL
|
2007-05-26 21:06:12 +02:00
|
|
|
*
|
|
|
|
* @package api
|
|
|
|
* @subpackage about
|
|
|
|
* @author Sebastian Ebling <hudeldudel@php.net>
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html
|
|
|
|
* @link http://www.egroupware.org
|
2016-05-16 16:27:33 +02:00
|
|
|
* @version SVN: $Id$
|
2007-05-26 21:06:12 +02:00
|
|
|
*/
|
2007-01-17 18:50:55 +01:00
|
|
|
|
2016-05-16 16:27:33 +02:00
|
|
|
header('Location: index.php?menuaction=api.EGroupware\\Api\\Framework\\About.index'.
|
|
|
|
(isset($_GET['sessionid']) ? '&sessionid='.$_GET['sessionid'].'&kp3='.$_GET['kp3'] : ''));
|