summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/changelog.rst
AgeCommit message (Collapse)AuthorFilesLines
2012-06-05Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵Andrey Andreev1-0/+2
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-04Merge pull request #1420 from IT-Can/fix-issue-1419Andrey Andreev1-0/+1
Fix issues #1397, #1419
2012-06-04changelogMichiel Vugteveen1-0/+1
2012-06-03Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-1/+3
2012-06-03Added support for $_SERVER['CI_ENV'] in index.phpPhil Sturgeon1-0/+1
Remember this is entirely optional, nothing will change if you do not which to use Multiple Environments just like right now. If you DO set CI_ENV you can manipulate the switch that controls error reporting, etc, so set it to "production" on your live site to hide errors from users. If you don't require this logic you can remove it, or change it entirely to check HTTP_HOST for environment subdomains, or check IP address, etc.
2012-05-31Changed documentation and added note to changelog as per @philsturgeon requestThanasis Polychronakis1-0/+1
2012-05-31automatic list formatting was brokenvlakoff1-1/+2
2012-05-30create_captcha() helper documentationmadhazelnut1-1/+1
2012-05-26Fix issue #862Andrey Andreev1-0/+1
2012-05-25Fix issue #136 (MySQL escape_like_str())Andrey Andreev1-1/+1
2012-05-24Added update_batch() support for PostgreSQL (issue #356)Andrey Andreev1-0/+2
2012-05-24Fix issue #319Andrey Andreev1-0/+1
2012-05-24Fix issue #121Andrey Andreev1-0/+1
2012-05-24Fix issues #44 & #110Andrey Andreev1-0/+1
2012-05-24Fix issue #1273 and some cleanup in Query BuilderAndrey Andreev1-3/+4
2012-05-23Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into errorsTimothy Warren1-30/+23
2012-05-23Fix a typo in the changelogAndrey Andreev1-1/+1
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev1-30/+23
_close() method in CI_DB_driver + some changelog fixes
2012-05-21Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into errorsTimothy Warren1-1/+4
2012-05-21Merge pull request #1372 from juanitomint/developAndrey Andreev1-0/+1
Added unbuffered_row() function (issue #1351)
2012-05-21added a comment for unbuffered_rowJuan Ignacio Borda1-0/+1
2012-05-19Add missing changelog entries from 2.1-stableAndrey Andreev1-1/+3
2012-05-17Added changelog entryTimothy Warren1-0/+1
2012-05-17Add parens to changelog entryTimothy Warren1-1/+1
2012-05-17Update inflector docblocks, add changelog entryTimothy Warren1-0/+1
2012-05-15Minor changes on the pull #1355 additionsAndrey Andreev1-1/+1
2012-05-15Merge pull request #1355 from shidec/developAndrey Andreev1-0/+1
Escaping boolean data type, some DBMS (e.g., postgre) need it
2012-05-15escaping boolean data type for postgre change logSoesapto Joeni Hantoro1-0/+1
2012-05-11Fix issue #1349Andrey Andreev1-2/+3
2012-05-11User_agent library improvementsAndrey Andreev1-1/+1
2012-05-04changelog entryMichiel Vugteveen1-1/+2
2012-05-02Changelog fixAndrey Andreev1-1/+0
2012-05-02Reverted rui_string change.Phil Sturgeon1-0/+2
This had knock-on effects as can be seen in #1306. Issue #122 has been reopend until it is fixed properly.
2012-04-27Merge upstream branchAndrey Andreev1-17/+65
2012-04-26Fixed conflicts.Phil Sturgeon1-9/+26
2012-04-26Fixed issue #122 - ruri_string() in subdirs.Phil Sturgeon1-0/+1
2012-04-26Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-16/+75
Conflicts: system/core/Loader.php system/database/DB_query_builder.php system/database/drivers/cubrid/cubrid_driver.php system/database/drivers/mssql/mssql_driver.php system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php system/database/drivers/oci8/oci8_driver.php system/database/drivers/odbc/odbc_driver.php system/database/drivers/pdo/pdo_driver.php system/database/drivers/postgre/postgre_driver.php system/database/drivers/sqlite/sqlite_driver.php user_guide_src/source/changelog.rst user_guide_src/source/database/query_builder.rst
2012-04-25Merge pull request #1288 from petsagouris/Issue-131Andrey Andreev1-0/+1
Updated foreign_characters.php
2012-04-25Added foreign_characters.php changes in the changelog.George Petsagourakis1-0/+1
2012-04-24Add changelog entry for already fixed issue #23Andrey Andreev1-1/+1
2012-04-23Fix issue #1265Andrey Andreev1-0/+1
2012-04-15Added the ability to insert objects with insert_batch() in Active Reccord.Iban Eguia1-0/+1
2012-04-13Update Release Date for version 2.1.1 at user_guide_src/source/changelog.rst Rogerio Prado de Jesus1-1/+1
2012-04-09DB Utility improvementsAndrey Andreev1-2/+3
- Replaced driver methods _list_databases(), _optimize_table() and _repair_table() with properties - Added defaults for optimize_table() and repair_table() SQL strings (FALSE, as those are mostly MySQL-specific) - Added MSSQL/SQLSRV support for optimize_table() (actually rebuilds table indexes) - Switched public driver methods to protected - Improved CUBRID support for list_databases() as it used to only return the currently used database - Minor speed improvements
2012-04-09Multiple DB Forge improvementsAndrey Andreev1-0/+3
- Replaced driver methods _create_database(), _drop_database(), _drop_table() and _rename_table() with properties - Added defaults for the above mentioned platform-specific queries, so that not all drivers need to define them - Improved support for the SQLite, ODBC and PDO drivers
2012-04-09Fix AR delete() for MSSQL and SQLSRVAndrey Andreev1-1/+2
2012-04-09Fix AR delete() for OracleAndrey Andreev1-0/+1
2012-04-09Extend fix for #798 to work across all DB drivers instead of just mysqlAndrey Andreev1-1/+1
2012-04-06Fix a CI_DB_pdo_driver::trans_commit() bugAndrey Andreev1-0/+1
2012-04-06Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵Andrey Andreev1-1/+2
CI_DB_driver