Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-02-27 | Call db_connect(TRUE) instead of db_pconnect() + some style changes | Andrey Andreev | 2 | -30/+30 | |
2014-02-26 | Deprecate HTML helpers nbs(), br() | Andrey Andreev | 4 | -36/+57 | |
2014-02-26 | More removal of error suppression usage | Andrey Andreev | 2 | -9/+6 | |
2014-02-26 | Don't use error suppression on is_dir(), file_exists() | Andrey Andreev | 10 | -15/+18 | |
2014-02-26 | Don't use error suppression on realpath() + style adjustments | Andrey Andreev | 10 | -107/+124 | |
2014-02-25 | Revert to error suppression on mysql_(p)connect() due to deprecation messages | Andrey Andreev | 1 | -2/+2 | |
2014-02-25 | [ci skip] Add a changelog entry | Andrey Andreev | 1 | -1/+2 | |
2014-02-25 | Remove error suppression usage from db_connect() | Andrey Andreev | 6 | -10/+10 | |
2014-02-25 | Make db_pconnect an alias for db_connect(TRUE) and reduce code repetition | Andrey Andreev | 13 | -214/+51 | |
2014-02-25 | Add array notation support for file field names in CI_Upload | Andrey Andreev | 2 | -7/+29 | |
Requested in #1691 | |||||
2014-02-25 | Use strings instead of integers for migration version numbers | Andrey Andreev | 2 | -17/+18 | |
- Allows timestamp versions to work on 32-bit systems. - Fixes #2902. - Supersedes PR #2368. | |||||
2014-02-24 | Fix #2901 | Andrey Andreev | 1 | -1/+2 | |
2014-02-24 | [ci skip] A tiny improvement in CI_Email | Andrey Andreev | 1 | -2/+8 | |
2014-02-24 | Remove a needless check in CI_Output::append_output() | Andrey Andreev | 1 | -9/+1 | |
2014-02-24 | Really don't use globals | Andrey Andreev | 3 | -12/+14 | |
2014-02-24 | Don't use globals | Andrey Andreev | 8 | -21/+19 | |
- Use load_class() to get objects during bootstrap process. - Change load_class() to accept a class constructor parameter instead of previously unused class name prefix. - Change CI_Router::__construct() to accept as a parameter. | |||||
2014-02-21 | [ci skip] Alter a docblock | Andrey Andreev | 1 | -1/+1 | |
2014-02-21 | Revert some changes ... our testing sucks | Andrey Andreev | 1 | -27/+0 | |
2014-02-21 | More CI_Lang tests | Andrey Andreev | 2 | -5/+57 | |
2014-02-21 | Minor improvements to CI_FTP | Andrey Andreev | 1 | -36/+25 | |
2014-02-21 | Remove CI_Calendar:: | Andrey Andreev | 1 | -25/+19 | |
Only use it in generate(). | |||||
2014-02-21 | Add test cases for CI_Upload::__construct(), CI_Upload::initialize() | Andrey Andreev | 1 | -3/+44 | |
2014-02-21 | CI_Upload changes | Andrey Andreev | 4 | -165/+145 | |
- Method chaining support. - A more abstract resetting of the default settings. - Added an option to initialize() to disable resetting to default settings. - Removed method mimes_types() and slightly optimized chunks of code where it was used. - Added the ability to pass allowed_types as an array. | |||||
2014-02-20 | [ci skip] Update a changelog entry | Andrey Andreev | 1 | -1/+1 | |
2014-02-20 | Merge pull request #2896 from ivantcholakov/develop | Andrey Andreev | 1 | -1/+0 | |
Method CI_URI::_fetch_uri_string() has been removed. | |||||
2014-02-20 | Method CI_URI::_fetch_uri_string() has been removed, removal of reference. | Ivan Tcholakov | 1 | -1/+0 | |
2014-02-20 | Try to fix Travis not excluding pgsql,mysqli for HHVM | Andrey Andreev | 1 | -0/+2 | |
2014-02-20 | Don't use error suppression on ini_get() either | Andrey Andreev | 6 | -11/+9 | |
2014-02-20 | CI_Utf8-related changes | Andrey Andreev | 5 | -14/+86 | |
- Give priority to mb_convert_encoding() over iconv() in clean_string() (partially fixes #261) - Add more proper unit tests | |||||
2014-02-20 | Remove a few empty 'mock' classes | Andrey Andreev | 12 | -24/+6 | |
2014-02-20 | Fix CI_Calendar tests | Andrey Andreev | 2 | -7/+27 | |
2014-02-20 | [ci skip] Fix date helper loading in CI_Calendar::get_total_days() | Andrey Andreev | 1 | -1/+1 | |
2014-02-20 | Date helper days_in_month(), CI_Calendar::get_total_days() changes | Andrey Andreev | 5 | -19/+17 | |
- days_in_month() now uses cal_days_in_month(), if available. - CI_Calendar::get_total_days() is now an alias for days_in_month(). | |||||
2014-02-20 | Don't use error suppression with ini_set() | Andrey Andreev | 2 | -2/+2 | |
2014-02-19 | Add compatibility layer for array_column(), array_replace(), ↵ | Andrey Andreev | 7 | -3/+736 | |
array_replace_recursive() | |||||
2014-02-19 | Merge pull request #2892 from jacobtabak/develop | Andrey Andreev | 1 | -2/+2 | |
Fixed typos in Migration library documentation | |||||
2014-02-19 | Fixed typos in Migration library documentation | Jacob Tabak | 1 | -2/+2 | |
Signed-off-by: Jacob Tabak <Jacob.Tabak@HelloWorld.com> | |||||
2014-02-19 | Merge pull request #2891 from cristik/develop | Andrey Andreev | 1 | -3/+2 | |
Moved $_error load statement lower. | |||||
2014-02-19 | Moved $_error load statement lower. | Cristian Kocza | 1 | -3/+2 | |
This prevents a possible recursion when an error is trigerred by one of the config file. Also since the variable is used only later in the code it makes sense to move it lower. | |||||
2014-02-18 | Don't load password hashing compat for HHVM | Andrey Andreev | 2 | -1/+7 | |
2014-02-18 | Merge pull request #2889 from noskov/develop | Andrey Andreev | 1 | -21/+21 | |
Correct typo for directory helper docs | |||||
2014-02-18 | Merge pull request #2888 from aanbar/develop | Andrey Andreev | 1 | -1/+1 | |
Fixed variable scope. | |||||
2014-02-18 | Correct typo | Serge Noskov | 1 | -21/+21 | |
2014-02-18 | Fixed variable scope. | Ahmad Anbar | 1 | -1/+1 | |
2014-02-18 | CI_Encryption::hkdf() to follow RFC5869 more strictly | Andrey Andreev | 1 | -1/+1 | |
2014-02-18 | [ci skip] Clean-up following PR #2864 | Andrey Andreev | 3 | -54/+58 | |
2014-02-18 | Add an ext/hash compatibility layer (just hash_pbkdf2(), for now) | Andrey Andreev | 6 | -1/+227 | |
2014-02-17 | Merge pull request #2864 from browner12/patch-1 | Andrey Andreev | 3 | -44/+71 | |
simplify calendar library | |||||
2014-02-17 | Merge pull request #2881 from brenjt/form_helper | Andrey Andreev | 1 | -10/+16 | |
form_dropdown array as first param fix | |||||
2014-02-17 | Removed extra space, condensed $defaults | Brennan Thompson | 1 | -4/+3 | |