diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-08 01:33:29 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-08 01:33:29 +0200 |
commit | bfbcf74c94a47c643420efaa342cc525bce2ad2c (patch) | |
tree | 75c5f85aacab1789d96eabd8e51f02ac19a308be /system/core/CodeIgniter.php | |
parent | 1f6f0abf0d17046a99fd9c9b3c60fb459b4531b1 (diff) |
Fix: #192 CI version constant incorrect in core/CodeIgniter
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index f3e1439ff..e022e1b46 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -32,7 +32,7 @@ * Define the CodeIgniter Version * ------------------------------------------------------ */ - define('CI_VERSION', '2.0.1'); + define('CI_VERSION', '2.0.2'); /* * ------------------------------------------------------ |