Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-12 | Important space fix :) | vkeranov | 1 | -1/+1 | |
2012-07-12 | Wrong url again | vkeranov | 1 | -1/+1 | |
2012-07-12 | Another typo... | vkeranov | 1 | -1/+1 | |
2012-07-12 | Fixed typo in the comments | vkeranov | 1 | -2/+1 | |
2012-07-04 | Ahem. | Phil Sturgeon | 1 | -2/+2 | |
2012-07-04 | Further update to `element()` to remove more unexpected results. | Phil Sturgeon | 1 | -2/+2 | |
2012-07-04 | Having `"0"` in an array would give you NULL with `elements()`. BAD! | Phil Sturgeon | 1 | -1/+1 | |
The trouble here, is that when we are expecting a valid result, such as `0`, or `false` that the array helper will instead say "I don't know if there is a value" and give you a `null`. | |||||
2012-07-04 | Deprecate Date helper standard_date() | Andrey Andreev | 1 | -0/+13 | |
2012-07-04 | Optimize standard_date() | Andrey Andreev | 1 | -15/+13 | |
2012-07-02 | Fix issue #1551 | Andrey Andreev | 1 | -4/+4 | |
2012-07-02 | Update Array Helper documentation | vlakoff | 1 | -1/+1 | |
default value of the "default value" parameter has changed in element() and elements() methods | |||||
2012-07-01 | If you don't know an answer, just say that you don't know. | Phil Sturgeon | 1 | -2/+2 | |
2012-06-27 | valid_email() to always return boolean | Andrey Andreev | 1 | -1/+1 | |
2012-06-27 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email | Timothy Warren | 6 | -117/+117 | |
2012-06-27 | URL Helper redirect() to utilize HTTP/1.1 response code 303 See Other | Andrey Andreev | 1 | -3/+11 | |
2012-06-26 | Fix issue #427 | Andrey Andreev | 1 | -1/+2 | |
2012-06-22 | Added optional fourth parameter to timezone_menu | Mat Whitney | 1 | -2/+18 | |
allows setting one or more attributes on the generated select tag. This allows passing attributes needed for Section 508 compliance § 1194.22(n), such as an id. http://access-board.gov/sec508/guide/1194.22.htm#(n) http://www.w3.org/TR/WCAG10-HTML-TECHS/#forms-labels | |||||
2012-06-17 | Add deprecated docblock tags for do_hash() and read_file() | Andrey Andreev | 2 | -0/+2 | |
2012-06-16 | anchor_popup() improvements | Andrey Andreev | 1 | -3/+13 | |
2012-06-16 | Fix two anchor_popup() issues | Andrey Andreev | 1 | -5/+2 | |
2012-06-16 | Fix local_to_gmt() | Andrey Andreev | 1 | -7/+7 | |
2012-06-16 | Small improvements to form_open() | Andrey Andreev | 1 | -4/+6 | |
2012-06-16 | Spelling fixes - `wether` to `whether` | Alex Bilbie | 1 | -1/+1 | |
Interestingly `wether` means a castrated ram in old English | |||||
2012-06-15 | Fix issue #520 | Andrey Andreev | 1 | -0/+4 | |
2012-06-15 | Optimize encode_php_tags() | Andrey Andreev | 1 | -1/+1 | |
2012-06-14 | Improve date helper functions human_to_unix() and nice_date() | Andrey Andreev | 1 | -37/+14 | |
2012-06-14 | Some date helper improvements | Andrey Andreev | 1 | -60/+43 | |
2012-06-14 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email | Timothy Warren | 1 | -25/+22 | |
2012-06-14 | Some optimizations to the date helper | Andrey Andreev | 1 | -10/+8 | |
2012-06-13 | Fixed some stuff in documentation. | Iban Eguia | 1 | -2/+2 | |
2012-06-12 | Changed the config parameter. The session's _get_time() function has also ↵ | Iban Eguia | 1 | -1/+1 | |
changed. | |||||
2012-06-12 | Merge upstream | Timothy Warren | 5 | -62/+25 | |
2012-06-11 | Optimized now() function. Thanks to @narfbg | Iban Eguia | 1 | -13/+8 | |
2012-06-09 | Fixed timezone change in index.php | Iban Eguia | 1 | -4/+10 | |
Now it does not ever change the local timezone, and it adds the option to get the 'local' time() | |||||
2012-06-08 | Merge remote-tracking branch 'upstream/develop' into new_date | Iban Eguia | 21 | -1541/+1456 | |
2012-06-07 | Suppress errors from file_get_contents() in read_file() | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | Deprecated do_hash() and read_file() in favor of hash() and ↵ | Andrey Andreev | 2 | -27/+7 | |
file_get_contents() respectively | |||||
2012-06-07 | Remove some unnecessary function_exists() checks and some minor improvements | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | fixes | Michiel Vugteveen | 1 | -3/+3 | |
2012-06-06 | fixes | Michiel Vugteveen | 1 | -4/+7 | |
2012-06-06 | form_checkbox set_value fix | Michiel Vugteveen | 1 | -2/+2 | |
2012-06-05 | Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵ | Andrey Andreev | 2 | -27/+7 | |
config/mimes.php is used by multiple core classes, libraries and helpers and each of them has implemented an own way of getting it, which is not needed and is hard to maintain. This also fixes issue #1411 | |||||
2012-06-04 | Direct return from mimes config, instead of using global $mimes; | Phil Sturgeon | 2 | -5/+5 | |
Global variables are generally a terrible idea, especially for something as simple as this. The mimes.php now returns an array instead of just injecting a variable name into the global namespace. | |||||
2012-06-04 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email | Timothy Warren | 13 | -69/+69 | |
2012-06-04 | Revert/optimize some changes from 773ccc318f2769c9b7579630569b5d8ba47b114b ↵ | Andrey Andreev | 1 | -5/+5 | |
and d261b1e89c3d4d5191036d5a5660ef6764e593a0 | |||||
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/helpers | Alex Bilbie | 13 | -68/+68 | |
2012-05-17 | merge upstream | Timothy Warren | 15 | -558/+536 | |
2012-05-17 | Suggested changes | Timothy Warren | 2 | -2/+2 | |
2012-05-17 | Update inflector docblocks, add changelog entry | Timothy Warren | 1 | -5/+5 | |
2012-05-17 | tweak and changelog entry | Timothy Warren | 1 | -4/+1 | |