blob: 5308c5de26a280e03912279e8d5d6abef48af9bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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
*/
// YYYYMMDD = Elgg Date
// XX = Interim incrementer
$version = 2011010401;
// Human-friendly version name
$release = '1.8-svn';
|