Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-08 | Added MSSQL/SQLSRV field escaping support with QUOTE_IDENTIFIER detection ↵ | Andrey Andreev | 3 | -16/+73 | |
(issue #706) | |||||
2012-06-08 | Add a default _from_tables() method to CI_DB_query_builder and remove it ↵ | Andrey Andreev | 12 | -157/+23 | |
from most of the drivers | |||||
2012-06-08 | Revert back some escape_identifiers() to proect_identifiers() as the first ↵ | Andrey Andreev | 12 | -28/+25 | |
one can't handle arrays | |||||
2012-06-08 | Resolve formatting differences between DB forge drivers | Andrey Andreev | 10 | -222/+209 | |
2012-06-07 | Resolve description docblock differences in system/language/ | Andrey Andreev | 12 | -29/+29 | |
2012-06-07 | Merge upstream branch | Andrey Andreev | 102 | -2972/+2404 | |
2012-06-07 | Merge upstream branch | Andrey Andreev | 106 | -3562/+4078 | |
2012-06-07 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-mssql | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | Fix a syntax error | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | Merge upstream branch | Andrey Andreev | 104 | -3477/+4034 | |
2012-06-07 | Some more minor improvements | Andrey Andreev | 2 | -13/+8 | |
2012-06-07 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-sqlite | Andrey Andreev | 13 | -67/+46 | |
2012-06-07 | Fix issue #861 (and previous commit, for that matter) | Andrey Andreev | 2 | -4/+2 | |
2012-06-07 | Added a work-around for MSSQL/SQLSRV create_table() with INT column types ↵ | Andrey Andreev | 2 | -0/+2 | |
(column lengths are not supported) | |||||
2012-06-07 | Suppress errors from file_get_contents() in read_file() | Andrey Andreev | 1 | -1/+1 | |
2012-06-07 | Revert 296ab9a06e3c648de56861ad67581236a6dae71a - there's no bug to fix | Andrey Andreev | 1 | -3/+3 | |
2012-06-07 | Deprecated do_hash() and read_file() in favor of hash() and ↵ | Andrey Andreev | 4 | -30/+10 | |
file_get_contents() respectively | |||||
2012-06-07 | Remove some unnecessary function_exists() checks and some minor improvements | Andrey Andreev | 5 | -26/+16 | |
2012-06-07 | Merge pull request #1438 from IT-Can/form-helper-fix | Andrey Andreev | 1 | -6/+9 | |
Form helper fixes for issues triggered by 773ccc318f2769c9b7579630569b5d8ba47b114b | |||||
2012-06-07 | fixes | Michiel Vugteveen | 1 | -3/+3 | |
2012-06-06 | fixes | Michiel Vugteveen | 1 | -4/+7 | |
2012-06-06 | Merge https://github.com/EllisLab/CodeIgniter into valid-ipv6 | Joffrey Jaffeux | 1 | -3/+3 | |
2012-06-06 | removed ip_version() | Joffrey Jaffeux | 1 | -21/+1 | |
2012-06-06 | form_checkbox set_value fix | Michiel Vugteveen | 1 | -2/+2 | |
2012-06-06 | Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into ↵ | Cory | 7 | -175/+88 | |
issue_1374 Conflicts: user_guide_src/source/changelog.rst | |||||
2012-06-06 | styling guide false -> FALSE | Joffrey Jaffeux | 1 | -1/+1 | |
2012-06-06 | Merge https://github.com/EllisLab/CodeIgniter into valid-ipv6 | Joffrey Jaffeux | 1 | -2/+8 | |
Conflicts: user_guide_src/source/changelog.rst | |||||
2012-06-06 | ip_version() now returns int instead of string | Joffrey Jaffeux | 1 | -3/+3 | |
2012-06-06 | Add a second parameter (charset) to CI_Output::set_content_type() + fix for ↵ | Andrey Andreev | 1 | -2/+8 | |
issue #666 | |||||
2012-06-06 | follow styling guide | Joffrey Jaffeux | 1 | -1/+1 | |
2012-06-06 | Add support for ipv6 | Joffrey Jaffeux | 1 | -1/+21 | |
2012-06-06 | Merge upstream branch and some changes for better readability | Andrey Andreev | 98 | -2480/+2110 | |
2012-06-06 | Merge pull request #1415 from mickeywu/develop | Andrey Andreev | 1 | -16/+16 | |
Made set_header() public in Email library and updated documentation. | |||||
2012-06-05 | Replace set_magic_quotes_runtime() with an ini_set() call | Andrey Andreev | 1 | -1/+1 | |
2012-06-05 | Fixing extra td; Issue #1374 | Cory | 1 | -3/+3 | |
2012-06-05 | Fix a magic_quotes-related bug and changed the default parameter value for ↵ | Andrey Andreev | 2 | -3/+3 | |
is_php() | |||||
2012-06-05 | Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵ | Andrey Andreev | 6 | -153/+60 | |
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 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 2 | -22/+18 | |
2012-06-04 | Direct return from mimes config, instead of using global $mimes; | Phil Sturgeon | 4 | -13/+9 | |
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 pull request #1403 from cryode/bug/cache_backup | Phil Sturgeon | 1 | -21/+17 | |
Fix issue where cache backup is ignored on first call. | |||||
2012-06-04 | Merge pull request #1420 from IT-Can/fix-issue-1419 | Andrey Andreev | 1 | -1/+1 | |
Fix issues #1397, #1419 | |||||
2012-06-04 | Loader was too specific about === "", some cases were NULL. | Phil Sturgeon | 1 | -1/+1 | |
Signed-off-by: Phil Sturgeon <email@philsturgeon.co.uk> | |||||
2012-06-04 | Fix issue #1423 | Andrey Andreev | 1 | -2/+2 | |
2012-06-04 | Alter SQLite3's version() method and clear some spaces | Andrey Andreev | 2 | -2/+2 | |
2012-06-04 | Fix an SQLite3 pconnect() bug + other minor changes | Andrey Andreev | 3 | -5/+5 | |
2012-06-04 | Revert/optimize some changes from 773ccc318f2769c9b7579630569b5d8ba47b114b ↵ | Andrey Andreev | 7 | -20/+20 | |
and d261b1e89c3d4d5191036d5a5660ef6764e593a0 | |||||
2012-06-04 | Revert/optimize some changes from 48a2baf0e288accd206f5da5031d29076e130792 | Andrey Andreev | 9 | -25/+25 | |
2012-06-04 | Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d | Andrey Andreev | 9 | -16/+19 | |
2012-06-03 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 80 | -575/+579 | |
2012-06-02 | remove static | Michiel Vugteveen | 1 | -1/+1 | |