Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-08-14 | Skip CI_Encrypt tests if MCrypt is not available | Andrey Andreev | 1 | -26/+8 | |
Rel: #3185 | |||||
2014-08-10 | Polish changes following PR #3173 | Andrey Andreev | 2 | -5/+5 | |
2014-08-10 | Merge pull request #3173 from ET-NiK/develop | Andrey Andreev | 2 | -2/+17 | |
Using ImagePNG in CAPTCHA helper | |||||
2014-08-08 | Using ImagePNG in CAPTCHA helper | ET-NiK | 2 | -2/+17 | |
Using ImagePNG function, if ImageJPG not exists | |||||
2014-08-06 | Merge pull request #3169 from Patroklo/develop | Andrey Andreev | 1 | -11/+14 | |
Change name didn't work if reset initialization it's true | |||||
2014-08-06 | Change name didn't work if reset initialization it's true | Joseba Juániz | 1 | -11/+14 | |
If user initializes the upload library with the reset flag as true, the uploaded file doesn't change it's name, it's neccesary to initialize or change the $_file_name_override every time. | |||||
2014-08-05 | Fix #3123 | Andrey Andreev | 1 | -1/+1 | |
2014-08-01 | Make CI_Pagination properties per_page, cur_page public | Andrey Andreev | 1 | -38/+38 | |
Useful if you want to make calculations based on them. | |||||
2014-07-31 | Merge pull request #3162 from MianSaleem/patch-1 | Andrey Andreev | 2 | -1/+2 | |
anchor popup's menubar attribute is missing | |||||
2014-07-31 | Last empty line remove | Mian Saleem | 1 | -1/+1 | |
2014-07-31 | Update url_helper.php | Mian Saleem | 0 | -0/+0 | |
2014-07-31 | Update url_helper.php | Mian Saleem | 0 | -0/+0 | |
2014-07-31 | Support for menubar attribute to the :func:`anchor_popup()` | Mian Saleem | 1 | -0/+1 | |
Now the menubar can be set to yes with anchor_popup() by adding new attribute array element 'menubar' => 'yes' The list of all available attribute for anchor_popup() function will be $atts = array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'menubar' => 'no', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0'); | |||||
2014-07-31 | Update url_helper.php | Mian Saleem | 1 | -1/+1 | |
2014-07-31 | Fix #3160 | Andrey Andreev | 1 | -2/+2 | |
2014-07-31 | Fix #3161 | Andrey Andreev | 3 | -8/+13 | |
2014-07-31 | anchor popup attribute missing | Mian Saleem | 1 | -2/+2 | |
Please add the menubar attribute to anchor popup | |||||
2014-07-14 | Merge pull request #3134 from kdazzle/patch-1 | Andrey Andreev | 2 | -1/+2 | |
Return 403 instead of 500 if no CSRF token given | |||||
2014-07-14 | Add changelog entry for CSRF status code; remove line at EOF | Kyle Valade | 2 | -1/+2 | |
2014-07-12 | Fix CI_Encryption::substr() for PHP 5.3 | Andrey Andreev | 1 | -1/+4 | |
Nothing critical, just an edge case that isn't currently used | |||||
2014-07-12 | Fix CI_Encryption::substr() usage of mb_substr() | Andrey Andreev | 1 | -1/+1 | |
The whole point was to use 8bit encoding | |||||
2014-07-12 | [ci skip] Add a note about CI_Driver (issue #3140) | Andrey Andreev | 1 | -1/+5 | |
2014-07-11 | Add setting ['composer_autoload'] | Andrey Andreev | 4 | -2/+44 | |
Supersedes PR #3132 | |||||
2014-07-07 | Continuing from previous commit ... use CI_Encryption::substr() | Andrey Andreev | 1 | -8/+8 | |
2014-07-07 | Fix potential bugs in password_hash(), CI_Encryption | Andrey Andreev | 2 | -11/+59 | |
strlen(), substr() are not byte-safe when mbstring.func_overload is enabled | |||||
2014-07-07 | Add a backport (compat) for quoted_printable_encode() | Andrey Andreev | 4 | -4/+216 | |
2014-07-07 | Fix a few typos and add a backport (compat) for hex2bin() | Andrey Andreev | 7 | -28/+115 | |
2014-07-06 | Return 403 instead of 500 if no CSRF token given | Kyle Valade | 1 | -2/+2 | |
Not supplying a CSRF token shouldn't return a 500 response because it isn't a server error. The response status code should definitely be in the 400's, because it's the client's fault. And it should be a 403 because the client is forbidden from making that request without the appropriate credential (the CSRF token), though the request may be otherwise valid. http://en.wikipedia.org/wiki/List_of_HTTP_status_codes | |||||
2014-07-06 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Andrey Andreev | 1 | -1/+1 | |
2014-07-06 | Fix #3131 | Andrey Andreev | 1 | -0/+4 | |
2014-07-05 | Merge pull request #3130 from dionysiosarvanitis/fix/pdo_result__list_fields | Andrey Andreev | 1 | -1/+1 | |
Missing looping index added. | |||||
2014-07-05 | Missing looping index added. Without index empty rows returned for csv ↵ | Dionysis Arvanitis | 1 | -1/+1 | |
column headers. | |||||
2014-07-02 | Remove GCM mode from CI_Encryption (OpenSSL) | Andrey Andreev | 2 | -14/+8 | |
While openssl_get_cipher_methods() lists 'aes-<keysize>-gcm' as supported, it appears that this is only half of the story. To be more specific, only the encryption operation of GCM is performed, and the authentication message is completely missing, rendering the whole thing useles. | |||||
2014-07-01 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Andrey Andreev | 1 | -1/+1 | |
2014-07-01 | Fix #3124 | Andrey Andreev | 1 | -2/+2 | |
2014-06-29 | Merge pull request #3121 from GrahamCampbell/patch-1 | Andrey Andreev | 1 | -1/+1 | |
Fixed Typo In Security.php | |||||
2014-06-29 | Fixed eof | Graham Campbell | 1 | -1/+1 | |
2014-06-29 | Fixed typo | Graham Campbell | 1 | -2/+2 | |
2014-06-21 | Add CI_Encryption::create_key() | Andrey Andreev | 2 | -5/+25 | |
This was planned, we somehow forgot about it. :) | |||||
2014-06-21 | Fix a _potential_ flaw in password_hash() | Andrey Andreev | 1 | -1/+4 | |
2014-06-19 | [ci skip] Leftover from 1e83d69a52a85a4f568bfa086d658556acd48980 | Andrey Andreev | 1 | -2/+0 | |
2014-06-19 | Remove the custom IV option from CI_Encryption | Andrey Andreev | 3 | -60/+37 | |
It serves for no practical purpose and can only do harm. | |||||
2014-06-19 | Fix #3112 | Andrey Andreev | 4 | -15/+4 | |
2014-06-13 | Merge pull request #3104 from TakayukiSakai/develop | Andrey Andreev | 2 | -4/+5 | |
Make num_links=0 in pagination library possible to configure | |||||
2014-06-13 | Fixed the changelog entry again | Takayuki Sakai | 1 | -1/+1 | |
2014-06-13 | Fixed a changelog entry | Takayuki Sakai | 1 | -1/+1 | |
2014-06-13 | Add a changelog entry in Pagination Library section | Takayuki Sakai | 1 | -0/+1 | |
2014-06-13 | Make 'num_links=0' configuration available in Pagination library | Takayuki Sakai | 1 | -4/+4 | |
Changed conditions when making 'first' and 'last' links | |||||
2014-06-13 | Revert "Make num_links=0 in pagination library possible to configure" | Takayuki Sakai | 1 | -15/+9 | |
This reverts commit a01924d2cc2d63d2bddbee85a18b423b88a9b19e. | |||||
2014-06-13 | Make num_links=0 in pagination library possible to configure | Takayuki Sakai | 1 | -9/+15 | |