summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2012-03-06Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon3-13/+42
2012-03-06Removed reset_validation() method from run() methodJonoB1-4/+5
2012-03-06Fixed a bug in CI_Session::_unserialize()Andrey Andreev1-4/+6
2012-03-06Fix issue #1125 ... for realAndrey Andreev1-0/+35
2012-03-05Removed order_by() from PostgreSQL driver too.SammyK1-9/+1
2012-03-05Fixed bug for PostgreSQL driver where setting a limit() on update() or ↵SammyK1-2/+2
delete() would throw a syntax error from Postgres.
2012-03-05Fix issue #64Hamza Bhatti1-1/+1
Modify regular expression to be able to handle SQL bracket delimiters for column names that contain special characters or SQL keywords. Signed-off-by: Hamza Bhatti <tiyowan@gmail.com>
2012-03-05Removed oci8-specific stuff from DB_driver.php and added a constructor to ↵Andrey Andreev3-23/+20
DB_result to handle initialization
2012-03-05Partially fix issue #306Andrey Andreev1-4/+3
2012-03-05Fix issue #1125Andrey Andreev1-1/+35
2012-03-05Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-issue-499Andrey Andreev8-78/+191
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developJohn Crepezzi44-1488/+2793
2012-03-04Fix indentation for changes from pull #1121Andrey Andreev1-25/+24
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-12/+55
2012-03-04Updated with 2.1-stable.Phil Sturgeon1-19/+15
2012-03-04Merge pull request #1116 from tubalmartin/helpers|url|2.1-stablePhil Sturgeon1-20/+16
2.1 stable - An improved url_title helper function
2012-03-04Allow developers to use any string as a separator, not just dashes or ↵tubalmartin1-10/+19
underscores. Backwards compatible when using 'dash' or 'underscore' as string separator. Tests: http://codepad.org/DWcxVH5r
2012-03-04Merge pull request #1121 from JonoB/developPhil Sturgeon1-12/+55
Allow users to specify an array for validation Now any data can be used, instead of always using $_POST.
2012-03-04Allow users to specify an array for validation, instead of alway using the ↵JonoB1-12/+55
$_POST array
2012-03-04Fixed conflicts.Phil Sturgeon1-3/+2
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon31-900/+1911
2012-03-04Merged conflicts.Phil Sturgeon2-8/+8
2012-03-03Fixed a bug - CI_Upload::_file_mime_type() could've failed if popen() is ↵tubalmartin1-1/+1
used for the detection.
2012-03-03An even better url_title helper. Tests: http://codepad.org/tuJgvkyNtubalmartin1-20/+7
Changelog entry added for 2.1.1
2012-03-03Fix MySQL/MySQLi field_data()Andrey Andreev2-12/+50
2012-03-03Merge upstream branchAndrey Andreev21-366/+1547
2012-03-03Replace usage of legacy alias pg_exec() in favor of pg_query() and improve ↵Andrey Andreev1-28/+10
PostgreSQL driver trans_*() methods
2012-03-03Added _optimize_table() support for PostgreSQLAndrey Andreev2-24/+13
2012-03-03Add db_set_charset() support for PostgreSQL and change its implementation ↵Andrey Andreev2-1/+14
for 'mysql'
2012-03-03Improve DB version() implementation and add pg_version() supportAndrey Andreev13-87/+109
2012-03-02Merge pull request #1107 from diogoosorio/developAndrey Andreev1-2/+5
Fix issue #1080
2012-03-02Made the code more readable, updated the changelog.Diogo Osório1-1/+1
2012-03-02Merge pull request #1106 from timw4mail/developPhil Sturgeon1-1/+1
Limit db session to select 1 row
2012-03-02Removed db_set_charset() from Interbase driver (no longer needed)Andrey Andreev1-15/+0
2012-03-02#1080 - Check if the SMTP connection and authentication were successfull.Diogo Osório1-2/+5
2012-03-02Limit db session select to single rowTimothy Warren1-1/+1
2012-03-02Replace Interbase _error_message(), _error_number() with the new error() methodAndrey Andreev1-29/+19
2012-03-02Merge upstreamTimothy Warren18-313/+188
2012-03-02Replaced DB methods _error_message() and _error_number() with error() (issue ↵Andrey Andreev11-202/+101
#1097)
2012-03-02Added method visibility declarations to SQLite DB utility classAndrey Andreev1-26/+15
2012-03-02Merge upstream branchAndrey Andreev4-69/+46
2012-03-02Fix a bug in Oracle's DB forge _create_table() method (AUTO_INCREMENT is not ↵Andrey Andreev1-47/+17
supported)
2012-03-02Fix issue #1101 (MySQL/MySQLi result field_data())Andrey Andreev2-22/+15
2012-03-02updated error_array #565Michiel Vugteveen1-0/+14
2012-03-02Merge upstream branchAndrey Andreev1-7/+5
2012-03-02Fix issue #803 (Profiler library didn't handle objects properly)Andrey Andreev1-7/+5
2012-03-01compile binds before caching the query, otherwise the cached query will ↵Ryan Dial1-6/+6
never match the unbound query. updated changlog to mention bug fix.
2012-03-01Merge upstream branchAndrey Andreev2-24/+36
2012-03-01Remove a PHP_VERSION < 5 check (no longer needed)Andrey Andreev1-16/+6
2012-03-01Fix issue #413 (Oracle _error_message(), _error_number())Andrey Andreev1-8/+30