Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-10-06 | Fix handling of %10 in paste content | Florian Pritz | 1 | -1/+1 | |
CI tries to remove invisible escape chars, but this breaks handling of code like the following: if (m == 2 && (y%4 == 0 && y%100 != 0)|| y%400 == 0) When pasted via the client all is fine, but when pasted in the webui CI strips '%10' from the string and leaves 'y0 != 0'. The second parameter of remove_invisible_characters indicates whether the string is urlencoded so I believe that setting it to false should be fine. This only disables the code that removes % escapes. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-06-06 | Merge remote-tracking branch 'remotes/upstream/2.2-stable' into working | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> Conflicts: system/libraries/Session.php user_guide/ | |||||
2014-05-31 | Changelog messages, bump year in copyright notices | Andrey Andreev | 1 | -1/+1 | |
2013-09-16 | Remove executable bits | Florian Pritz | 1 | -0/+0 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-08 | Really fix #1715 | Andrey Andreev | 1 | -1/+1 | |
2012-10-08 | Fix issue #1715 | Andrey Andreev | 1 | -4/+4 | |
2012-10-07 | Bump version number to 2.1.3 | Andrey Andreev | 1 | -2/+2 | |
2012-10-06 | Fix issues #227 and #907 | Andrey Andreev | 1 | -32/+31 | |
2012-06-07 | Revert a change | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | Fixed valid_ip() for PHP < 5.2 | Andrey Andreev | 1 | -22/+21 | |
2012-06-07 | Adding IPv6 support to the Input and Form_validation libraries. | Pascal Kriete | 1 | -3/+131 | |
2011-10-27 | get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lower | Andrey Andreev | 1 | -4/+7 | |
2011-08-15 | Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into ↵ | Phil Sturgeon | 1 | -13/+51 | |
develop | |||||
2011-08-14 | Added some docs to CI core files | David Behler | 1 | -0/+2 | |
2011-08-14 | Added some docs to CI core files | David Behler | 1 | -13/+49 | |
2011-08-13 | Get php_sapi_name() == 'cli' involved in the 'is this the command line?' ↵ | Phil Sturgeon | 1 | -1/+1 | |
decision. | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -12/+12 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -12/+12 | |
2011-04-05 | Moving security to core. | Pascal Kriete | 1 | -9/+7 | |
2011-03-16 | Standardized newlines even more extensively in Input class. | Phil Sturgeon | 1 | -1/+1 | |
2011-02-18 | Bugfix in foreach-loop ('name' must be last, as it also is the array's ↵ | tobiasbg | 1 | -8/+7 | |
name); consistent handling for 'cookie_secure' config item | |||||
2011-02-16 | Merged CodeIgniter Core changes and integrated rob1's secure cookie change ↵ | Phil Sturgeon | 1 | -27/+65 | |
into my secure cookie change. | |||||
2011-02-16 | Secure cookies can now be made with the set_cookie() helper and Input Class ↵ | Phil Sturgeon | 1 | -3/+4 | |
method. | |||||
2011-02-15 | Input post() and get() will now return a full array if the first argument is ↵ | Phil Sturgeon | 1 | -21/+15 | |
not provided. | |||||
2011-02-15 | Automated merge with https://bitbucket.org/seandowney/codeigniter-reactor | Phil Sturgeon | 1 | -3/+3 | |
2011-02-14 | Whitespace cleanup in core/ | Pascal Kriete | 1 | -3/+3 | |
2011-02-13 | Updated the post method and added the new functionality to the get method also | vascopj | 1 | -1/+17 | |
Updated the documentation | |||||
2011-02-11 | Adding config option to require 'secure' setting for all cookies- requires ↵ | Robin Sowell | 1 | -1/+3 | |
https. | |||||
2011-02-06 | A change to pass all fields back if there are no fields passed into the ↵ | vascopj | 1 | -0/+16 | |
"post" method. Based on comments here http://codeigniter.uservoice.com/forums/40508-codeigniter-reactor/suggestions/1346917-allow-this-input-post-to-return-array-of-eve | |||||
2011-01-27 | Automated merge with https://bitbucket.org/ellislab/codeigniter | Phil Sturgeon | 1 | -16/+23 | |
2011-01-20 | Renaming the unicode class to utf8 so we don't run the risk of violating the ↵ | Pascal Kriete | 1 | -1/+1 | |
Unicode Consortium's trademark. | |||||
2011-01-19 | Reverted regex validation while we re-think the implementation, and added ↵ | Phil Sturgeon | 1 | -2/+16 | |
->input->is_cli_request(); | |||||
2011-01-05 | Hey look, it's 2011 | Greg Aker | 1 | -1/+1 | |
2010-12-27 | Implemented GET string support from Dan Horrigan and modified it slightly. ↵ | Phil Sturgeon | 1 | -13/+6 | |
Also tweaked his regex_match changes. | |||||
2010-12-15 | Added full Query String and $_GET array support. This is enabled by ↵ | Dan Horrigan | 1 | -2/+2 | |
default. Added a seperate config option to enable/disable the $_GET array. | |||||
2010-12-15 | Potential PHP 5.4 issue, get_magic_quotes_gpc() is being removed. This ↵ | Phil Sturgeon | 1 | -1/+1 | |
change will check the function exists before calling it in Input. | |||||
2010-12-09 | Fix #260 - tightening up the is_ajax_request() method in the Input class. ↵ | Greg Aker | 1 | -2/+1 | |
Thanks sophistry for the suggestion | |||||
2010-11-22 | Adding is_ajax_request() method to CI_Input | Greg Aker | 1 | -0/+15 | |
2010-11-15 | Adding request_headers() and get_request_header() methods to the input ↵ | Greg Aker | 1 | -2/+81 | |
class. The request_headers() method is helpful in non-apache environments where apache_request_headers() isn't going to exist. | |||||
2010-11-10 | Changing all class constructors to __construct() | Greg Aker | 1 | -19/+17 | |
2010-11-10 | Updating PHP requirements in files 5.1.6 | Greg Aker | 1 | -1/+1 | |
2010-10-04 | Cleanup of stray spaces and tabs | Barry Mieny | 1 | -4/+4 | |
2010-03-19 | Changed a few strstr to strpos for consistency w performance guidelines and ↵ | Robin Sowell | 1 | -1/+1 | |
to mirror EE2. | |||||
2010-03-02 | significant rewrite to Input class | Derek Jones | 1 | -705/+192 | |
some items will be moved to Security class added set_cookie() added UTF-8 uniformity to input | |||||
2010-03-02 | fixed EOF code comment file locations | Derek Jones | 1 | -1/+1 | |
2010-03-02 | moving core library files out of libraries into new core folder | Derek Jones | 1 | -0/+1067 | |