This commit is contained in:
fgerlits 2007-02-09 10:15:05 +00:00
parent 3c3d483fc3
commit 9a3a7a3ebd
5 changed files with 16 additions and 6 deletions

View File

@ -1,4 +1,8 @@
<div class="copyright">{$UI_VERSION} &copy;2006 <a href="http://www.mdlf.org" target="_blank">MDLF</a> - maintained and distributed under GNU/GPL by <a href="http://www.campware.org" target="_blank">CAMPWARE</a></div>
<div class="copyright">{$UI_VERSION} &copy;{$UI_COPYRIGHT_DATE}
<a href="http://www.mdlf.org" target="_blank">MDLF</a>
- maintained and distributed under GNU/GPL by
<a href="http://www.campware.org" target="_blank">CAMPWARE</a>
</div>
</div>
<script>

View File

@ -85,7 +85,10 @@ DIV.blockquote
<h1>Quick Start - {$UI_VERSION_FULLNAME}</h1>
<div class="copyright">
{$UI_VERSION} &copy;2005 <a href="http://www.mdlf.org" target="_blank">MDLF</a> - maintained and distributed under GNU/GPL by <a href="http://www.campware.org" target="_blank">CAMPWARE</a>
{$UI_VERSION} &copy;{$UI_COPYRIGHT_DATE}
<a href="http://www.mdlf.org" target="_blank">MDLF</a>
- maintained and distributed under GNU/GPL by
<a href="http://www.campware.org" target="_blank">CAMPWARE</a>
</div>
@ -294,4 +297,4 @@ DIV.blockquote
</body>
</html>
</html>

View File

@ -117,6 +117,7 @@ define('UI_RESTORETOKEN_KEY', 'restoreToken');
require_once('../../../storageServer/var/conf.php');
define('UI_VERSION', CAMPCASTER_VERSION);
define('UI_VERSION_FULLNAME', 'Campcaster '.UI_VERSION);
define('UI_COPYRIGHT_DATE', CAMPCASTER_COPYRIGHT_DATE);
// extent config
$CC_CONFIG = array_merge($CC_CONFIG,
@ -184,4 +185,4 @@ $CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
//PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
PEAR::setErrorHandling(PEAR_ERROR_RETURN);
//PEAR::setErrorHandling(PEAR_ERROR_PRINT);
?>
?>

View File

@ -121,6 +121,7 @@ define('UI_RESTORETOKEN_KEY', 'restoreToken');
require_once('storage_server/var/conf.php');
define('UI_VERSION', CAMPCASTER_VERSION);
define('UI_VERSION_FULLNAME', 'Campcaster '.UI_VERSION);
define('UI_COPYRIGHT_DATE', CAMPCASTER_COPYRIGHT_DATE);
// extent config
$CC_CONFIG = array_merge($CC_CONFIG,
@ -186,4 +187,4 @@ $CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
//PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
PEAR::setErrorHandling(PEAR_ERROR_RETURN);
//PEAR::setErrorHandling(PEAR_ERROR_PRINT);
?>
?>

View File

@ -1,3 +1,4 @@
<?php
define('CAMPCASTER_VERSION', '1.2.0');
?>
define('CAMPCASTER_COPYRIGHT_DATE', '2006-2007');
?>