Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-12-06 | Updated formatting and styleguide, thanks narfbg; | CJ | 1 | -7/+13 | |
2012-12-06 | Bug fix for relative directory removal | chernjie | 1 | -1/+20 | |
This fixes two bugs: - for segments that ends with ".." e.g. /user/username../details, this should not be replaced - current solution only replace double slashes, this solutions removes the infinite number of recurring slashes | |||||
2012-12-04 | Remove CI_DB_oci8_result::data_seek() | Andrey Andreev | 1 | -63/+0 | |
It can only call oci_execute() in order to reset the pointer to 0, the oci8 driver doesn't support setting the pointer. Due to the result_object(), result_array() and custom_result_object() calling data_seek() every time prior to fetching the result set, this only causes the query to be executed twice. All of the three methods now cast from existing result_object and/or result_array sets, so the probability to ever need to really fetch the result set again is practically zero and so this method doesn't bring any benefit. | |||||
2012-12-04 | Rename DB_result _data_seek() to data_seek() and make it publicly available | Andrey Andreev | 11 | -25/+57 | |
(as requested in #2050) | |||||
2012-12-03 | Fix postgre db_connect() | Andrey Andreev | 1 | -6/+6 | |
2012-12-03 | Add min_width and min_height options to the Upload class | Andrey Andreev | 4 | -48/+109 | |
(manually implementing outdated PR #636) | |||||
2012-12-03 | Improve schema support for Postgre | Andrey Andreev | 3 | -12/+44 | |
2012-12-03 | [ci skip] Cleaned some spaces | Andrey Andreev | 46 | -93/+85 | |
2012-12-03 | Merge pull request #2048 from vlakoff/develop | Andrey Andreev | 1 | -7/+10 | |
config->site_url() optimizations | |||||
2012-12-03 | config->site_url(): remove useless cast | vlakoff | 1 | -1/+1 | |
thanks to narfbg | |||||
2012-12-03 | config->site_url() optimizations | vlakoff | 1 | -7/+10 | |
- direct access to config array, instead of item() calls - the string cast is just in case 'url_suffix' would be set to false or null; the function produces the same results without this cast, but it leads to a robuster code, as false and null are sanitized and skip the suffix insertion code - altered conditional structure: if no suffix, skip the appending of an empty string to $uri | |||||
2012-11-30 | Merge pull request #2043 from johnathancroom/keep_flash_data_array | Andrey Andreev | 1 | -0/+50 | |
Test for keep_flashdata accepting an array | |||||
2012-11-30 | keep_flashdata array test | Johnathan Croom | 1 | -1/+51 | |
2012-11-30 | Add CI_Output::delete_cache() | Andrey Andreev | 3 | -4/+51 | |
(an improved version of PR #609) | |||||
2012-11-29 | Fix #2041 | Andrey Andreev | 3 | -21/+25 | |
2012-11-29 | Added CI_Output::get_header() | Andrey Andreev | 4 | -7/+96 | |
(an improved version of PR #645) Also fixed get_content_type() to only return the MIME value and created Output library unit tests for both of these methods. | |||||
2012-11-28 | Fix #2037 | Andrey Andreev | 1 | -6/+8 | |
2012-11-28 | Merge pull request #2036 from williamknauss/develop | Andrey Andreev | 1 | -3/+10 | |
Children Drivers | |||||
2012-11-28 | Remove Comment | William Knauss | 1 | -1/+0 | |
As requested removed useless comment | |||||
2012-11-27 | Children Drivers | William Knauss | 1 | -3/+11 | |
This allows developers to create children drivers that are not prefix with "CI_". This is a nity grity change, however it keeps with the mindset that class names that start with CI_ are typically overrides of core classes. | |||||
2012-11-26 | Fix some erroneous variable names (sorry) | Andrey Andreev | 2 | -3/+3 | |
2012-11-26 | Update Language helper test case | Andrey Andreev | 1 | -1/+1 | |
2012-11-26 | Language helper lang() to accept optional HTML attributes | Andrey Andreev | 3 | -10/+12 | |
(an improved version of PR #1235) | |||||
2012-11-26 | Implement cascade-style loading of language files | Andrey Andreev | 3 | -36/+44 | |
(as requested in issue #452) | |||||
2012-11-26 | Add 'valid_url' rule to Form Validation (issue #1966) | Andrey Andreev | 3 | -2/+46 | |
2012-11-26 | CI_Email::print_debugger() option to limit the type of data to be printed | Andrey Andreev | 3 | -3/+35 | |
(an alternative to PR #1759; partially solves issue #1742) | |||||
2012-11-26 | Switch CI_Form_validation:: to public | Andrey Andreev | 1 | -1/+1 | |
Makes it easier to access the data after validation (issue #1208) | |||||
2012-11-26 | Manually implement PR #2033 | Andrey Andreev | 1 | -1/+1 | |
Check for an empty encryption_key shouldn't use strict comparison. | |||||
2012-11-25 | Merge pull request #2026 from johnathancroom/keep_flash_data_array | Andrey Andreev | 3 | -3/+17 | |
keep_flashdata accepts array | |||||
2012-11-25 | Changelog change | Johnathan Croom | 1 | -1/+1 | |
2012-11-25 | Improved array keey_flashdata + Changelog | Johnathan Croom | 2 | -13/+16 | |
2012-11-25 | Fix #2027 | Andrey Andreev | 6 | -13/+79 | |
2012-11-25 | create database for mysqli tests | Andrey Andreev | 1 | -1/+1 | |
2012-11-25 | MySQLi tests | Andrey Andreev | 5 | -0/+82 | |
2012-11-25 | Revert some of the changes from PR #2029 | Andrey Andreev | 2 | -43/+25 | |
We have file naming conventions and any extension filename needs to match MY_<orig_filename>, so we don't need to check for lowercase equivalents. | |||||
2012-11-25 | Merge pull request #2029 from dchill42/driver_ext | Andrey Andreev | 11 | -126/+352 | |
Added driver extension support | |||||
2012-11-25 | Merge pull request #2030 from dchill42/unit_tests | Andrey Andreev | 5 | -50/+10 | |
Replaced Mock_Core_Lang with PHPUnit mockups | |||||
2012-11-25 | Replaced Mock_Core_Lang with PHPUnit mockups | dchill42 | 5 | -50/+10 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-11-25 | Added support for extending individual driver classes and driver unit tests | dchill42 | 11 | -126/+352 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-11-24 | Requested changed to keep_flashdata | Johnathan Croom | 1 | -4/+3 | |
2012-11-24 | Merge pull request #2028 from tocaibiza/develop | Andrey Andreev | 1 | -1/+1 | |
Bug fix - optimize_table() in DB utility class | |||||
2012-11-24 | Bug fix - optimize_table() in DB utility class | Dimitar | 1 | -1/+1 | |
2012-11-24 | keep_flashdata accepts array | Johnathan Croom | 2 | -9/+21 | |
2012-11-23 | Merge pull request #2025 from vkeranov/develop | Andrey Andreev | 2 | -43/+39 | |
Some minor changes to Xmlrpc.php and Xmlrpcs.php | |||||
2012-11-23 | Minor changes to Xmlrpcs.php | vkeranov | 1 | -30/+27 | |
2012-11-23 | Minor changes to Xmlrpc.php | vkeranov | 1 | -13/+12 | |
2012-11-23 | [ci skip] Remove a lone semicolon (rel 2d48b4f1a174473fa0539769a433ba78305c0faa) | Andrey Andreev | 1 | -1/+1 | |
2012-11-23 | Fix #113 | Andrey Andreev | 2 | -1/+3 | |
2012-11-23 | Merge pull request #2024 from ivantcholakov/develop | Andrey Andreev | 1 | -1/+1 | |
3.0.0-dev: Fixing the issue #2023. | |||||
2012-11-23 | 3.0.0-dev: Fixing the issue #2023. | Ivan Tcholakov | 1 | -1/+1 | |
CI_Cart initialization: Session data presense should be tested against NULL, not FALSE. |