commit | 083a22635140cb627cae7e4edf5d7127220c018e | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Thu Feb 20 16:04:58 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Thu Feb 20 16:04:58 2014 +0200 |
tree | 0db4feae4635a03306b5a04272f3af69eb9d1f33 | |
parent | be368a82f789aaa9f0ac0c8b6fa72a2f7cd0b6d4 [diff] [blame] |
[ci skip] Fix date helper loading in CI_Calendar::get_total_days()
diff --git a/system/libraries/Calendar.php b/system/libraries/Calendar.php index 7bdcdca..cdcbfe9 100644 --- a/system/libraries/Calendar.php +++ b/system/libraries/Calendar.php
@@ -456,7 +456,7 @@ */ public function get_total_days($month, $year) { - $this->load->helper('date'); + $this->CI->load->helper('date'); return days_in_month($month, $year); }