Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-11-24 | Changed form_open() to compare $action against base_url() | John Nicely | 1 | -1/+1 | |
Checking for strpos($action, $CI->config->site_url()) === FALSE causes CSRF token to not be added in form_open() output. When site_url()'s first parameter ($uri) is empty, site_url's return value is the base URL plus the $CI->config->item('index_page') value. form_open() and CodeIgniter's URI routing do not require index.php to be in the URL, so any call to form_open() in which the $action parameter does not have index.php will always return false for the strpos() call. | |||||
2011-11-23 | tmp_path does not exists, should be tmp_name | Michiel Vugteveen | 1 | -1/+1 | |
2011-11-22 | Readded PDO drivers. | Phil Sturgeon | 5 | -15/+565 | |
2011-11-14 | Tweaking the xss filter for IE <comment> tags, parameter injection, and ↵ | Pascal Kriete | 1 | -50/+41 | |
weird html5 attributes. | |||||
2011-11-14 | Removing stray docblocks | Pascal Kriete | 1 | -12/+0 | |
2011-11-13 | Added TLS and SSL support to Email library. Fixes issue #171 | Radu Potop | 1 | -1/+19 | |
2011-11-13 | Resolved issue 65 - made action on form_open_multipart helper function call ↵ | Ben Edmunds | 1 | -1/+1 | |
optional | |||||
2011-11-13 | Fix invalid datetime format | Syahril Zulkefli | 1 | -3/+3 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-08 | Added ->db->replace() for MySQLi. | Phil Sturgeon | 1 | -0/+19 | |
2011-11-08 | Enables real page numbers for URI segment in Pagination library | Aaron Kuzemchak | 1 | -12/+73 | |
2011-11-02 | Fix #8 - Load core classes from the application folder first. | Shane Pearson | 1 | -3/+3 | |
2011-10-31 | Misc formatting fixes | Timothy Warren | 1 | -7/+8 | |
2011-10-31 | Set charset in DSN if PHP >= 5.3.6 | Timothy Warren | 1 | -1/+7 | |
2011-10-31 | Changed mysql charset to PDO option | Timothy Warren | 1 | -4/+7 | |
2011-10-28 | add html_escape() function to escape HTML. | kenjis | 1 | -0/+24 | |
2011-10-27 | Added the 'user_data' key to the userdata property so that sessions using a ↵ | Kyle Farris | 1 | -1/+2 | |
database can be deleted properly when using the table schema found in the "Saving Session Data to a Database" section of the Session Class in the user guide. | |||||
2011-10-27 | Fixed issue #150 correctly. | Phil Sturgeon | 2 | -6/+6 | |
2011-10-27 | Fixed issue #150 (for mysql and mysqli), now returns the actual column length. | danmontgomery | 4 | -15/+25 | |
2011-10-27 | Fixed a bug (#200) where MySQL queries would be malformed after calling ↵ | Greg Aker | 9 | -0/+9 | |
db->count_all() then db->get() | |||||
2011-10-27 | Fixed LIKE statement escaping issues | Timothy Warren | 1 | -12/+13 | |
2011-10-27 | Bumped CodeIgniter version to 2.1.0. | Phil Sturgeon | 1 | -1/+1 | |
2011-10-27 | Some public and protected method declarations | Andrey Andreev | 3 | -59/+59 | |
2011-10-27 | Remove another 2 old comments | Andrey Andreev | 1 | -3/+1 | |
2011-10-27 | Cleanup and migrate oci8_driver and oci8_result from deprecated PHP4 to PHP5 ↵ | Andrey Andreev | 2 | -118/+120 | |
style functions | |||||
2011-10-27 | get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lower | Andrey Andreev | 2 | -7/+14 | |
2011-10-27 | I wasn't following the CI code style guide. | diegorivera | 1 | -3/+3 | |
2011-10-27 | Update system/libraries/Email.php | diegorivera | 1 | -1/+9 | |
2011-10-27 | CI_Loader::driver() processes empty library. Fixed. | Tom Klingenberg | 1 | -0/+5 | |
This causes endless recursion calls _ci_load_class(), see #550 | |||||
2011-10-27 | Fix #576: using ini_get() to detect if apc is enabled or not | Bo-Yi Wu | 1 | -2/+2 | |
2011-10-27 | Converted database constructors to PHP5 type | Timothy Warren | 5 | -7/+7 | |
2011-10-27 | if statment code style update | Timothy Warren | 1 | -0/+792 | |
2011-10-27 | resolve a difference between the two memcache set method parameters | Mark Huot | 1 | -1/+10 | |
2011-10-27 | Change Windows OS detection approach | Andrey Andreev | 1 | -1/+1 | |
2011-10-27 | Fix an erroneus variable name and a typo in comments | Andrey Andreev | 1 | -2/+2 | |
2011-10-27 | Fix alignment with tabs instead of spaces | Andrey Andreev | 1 | -1/+1 | |
2011-10-27 | Remove an unnecessary variable initialization | Andrey Andreev | 1 | -2/+0 | |
2011-10-27 | Added _file_mime_type() method to system/libraries/Upload.php in order to ↵ | Andrey Andreev | 1 | -2/+66 | |
fix a possible MIME-type injection (issue #60) | |||||
2011-08-21 | Removed unneeded code in CI_Email's set_alt_message. | Frank de Jonge | 1 | -1/+1 | |
2011-08-15 | Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵ | Phil Sturgeon | 12 | -74/+423 | |
develop | |||||
2011-08-15 | Merge pull request #52 from waldmeister/develop | Phil Sturgeon | 5 | -49/+224 | |
Added some docs to CI core files | |||||
2011-08-15 | Added some docs to CI core files | David Behler | 5 | -49/+224 | |
2011-08-15 | Merge pull request #51 from waldmeister/develop | Phil Sturgeon | 5 | -13/+110 | |
Added some docs to CI core files | |||||
2011-08-14 | Added some docs to CI core files | David Behler | 5 | -13/+110 | |
2011-08-14 | Merge pull request #50 from waldmeister/develop | Phil Sturgeon | 1 | -0/+14 | |
Develop - Added some docs to CI core files | |||||
2011-08-14 | Added some docs to CI core files | David Behler | 1 | -0/+14 | |
2011-08-14 | Merge pull request #49 from waldmeister/develop | Phil Sturgeon | 5 | -13/+96 | |
Added some doc blocks to some CI core files | |||||
2011-08-14 | Added some docs to CI core files | David Behler | 2 | -13/+64 | |
2011-08-14 | Added some docs to CI core files | David Behler | 3 | -0/+32 | |