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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php /** * config.version.php * * Contains the version info * * @package TeamCalPro * @version 3.3.001 * @author George Lewe * @copyright Copyright (c) 2004-2010 by George Lewe * @link http://www.lewe.com * @license http://www.lewe.com/tcpro/doc/license.txt Extended GNU Public License */
/** * PRODUCT, AUTHOR, COPYRIGHT, LICENSE INFORMATION * Do not change this information. It is protected by the license agreement. * To personalize your installation open the TeamCal Pro Configuration in the * Admin menu. */ $CONF['app_name'] = "TeamCal Pro"; $CONF['app_version'] = "3.3.001"; $CONF['app_date'] = "12.Apr.2010"; $CONF['app_year'] = "2010"; $CONF['app_author'] = "George Lewe"; $CONF['app_author_url'] = "http://www.lewe.com"; $CONF['app_author_email'] = "george@lewe.com"; $CONF['app_copyright'] = "© 2004-".$CONF['app_year']." by <a href=\"mailto:".$CONF['app_author_email']."?subject=".$CONF['app_name']." ".$CONF['app_version']."\" class=\"copyright\">".$CONF['app_author']."</a>."; $CONF['app_copyright_html'] = "(c) 2004-".$CONF['app_year']." by ".$CONF['app_author'].", (".$CONF['app_author_url'].")"; $CONF['app_footer_pwd'] = "Powered by ".$CONF['app_name']." ".$CONF['app_version']." © 2004-".$CONF['app_year']." by <a href=\"http://www.lewe.com\" class=\"copyright\" target=\"_blank\">".$CONF['app_author']."</a>"; $CONF['app_license_html'] = "This program is open source software; it may be used, redistributed and/or modified under the terms of the TeamCal Pro license which is based on the GNU General Public License as published by the Free Software Foundation (but not identical). TeamCal Pro license: http://www.lewe.com/tcpro/license.txt GPL license: http://www.lewe.com/tcpro/gpl.txt
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
?>
|