0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mambo
/
4.6.2-16
/
standard
/
htdocs
/
includes
/
[
Home
]
File: version.php
<?php /** * @package Mambo * @author Mambo Foundation Inc see README.php * @copyright Mambo Foundation Inc. * See COPYRIGHT.php for copyright notices and details. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see * LICENSE.php * Mambo 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; version 2 of the * License. */ /** Version information */ class version { /** @var string Product */ var $PRODUCT = 'Mambo'; /** @var int Main Release Level */ var $RELEASE = '4.6'; /** @var string Development Status */ var $DEV_STATUS = 'Stable'; /** @var int Sub Release Level */ var $DEV_LEVEL = '2'; /** @var string Codename */ var $CODENAME = 'Zeppy'; /** @var string Date */ var $RELDATE = '24-April-2007'; /** @var string Time */ var $RELTIME = '03:00'; /** @var string Timezone */ var $RELTZ = 'GMT'; /** @var string Copyright Text */ var $COPYRIGHT = 'Refer to copyright.php All rights reserved.'; /** @var string URL */ var $URL = '<a href="http://mambo-foundation.org">Mambo</a> is Free Software released under the GNU/GPL License.'; } ?>