blob: 3b4b203f498c294298c0865b930ef18c7847ead6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Elgg version number.
* This file defines the current version of the core Elgg code being used.
* This is compared against the values stored in the database to determine
* whether upgrades should be performed.
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
$version = 2008042301; // YYYYMMDD = Elgg Date
// X = Elgg Point release (0,1,2...)
// Y = Interim incrementer
$release = '1.0'; // Human-friendly version name
?>
|