summaryrefslogtreecommitdiffstats
path: root/system/libraries/Calendar.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2009-08-17 19:24:31 +0200
committerDerek Allard <derek.allard@ellislab.com>2009-08-17 19:24:31 +0200
commitdefaa17f0977c340440d81fbfb619db2c13c5ce5 (patch)
tree733c3bebd4392a8caf247091c11ecb67bb604a18 /system/libraries/Calendar.php
parent2cdc05ddff47603eacb44f7e0eb197b95c8da5de (diff)
Fixed a bug in the Calendar library where the shortname was output for "May".
Diffstat (limited to 'system/libraries/Calendar.php')
-rw-r--r--system/libraries/Calendar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Calendar.php b/system/libraries/Calendar.php
index 9c5961fb2..68d402254 100644
--- a/system/libraries/Calendar.php
+++ b/system/libraries/Calendar.php
@@ -270,7 +270,7 @@ class CI_Calendar {
}
else
{
- $month_names = array('01' => 'cal_january', '02' => 'cal_february', '03' => 'cal_march', '04' => 'cal_april', '05' => 'cal_may', '06' => 'cal_june', '07' => 'cal_july', '08' => 'cal_august', '09' => 'cal_september', '10' => 'cal_october', '11' => 'cal_november', '12' => 'cal_december');
+ $month_names = array('01' => 'cal_january', '02' => 'cal_february', '03' => 'cal_march', '04' => 'cal_april', '05' => 'cal_mayl', '06' => 'cal_june', '07' => 'cal_july', '08' => 'cal_august', '09' => 'cal_september', '10' => 'cal_october', '11' => 'cal_november', '12' => 'cal_december');
}
$month = $month_names[$month];