summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2014-03-24[ci skip] Spacing adjustmentsAndrey Andreev1-10/+10
2014-03-24Alter previous commitAndrey Andreev1-1/+1
2014-03-24CI_Loader::_ci_autoload() micro-optimizationAndrey Andreev1-3/+3
2014-03-21remove eolfabianozenatti1-1/+1
2014-03-21Fix typo in CI_Input constructorfabianozenatti1-2/+2
2014-03-20Fixed typo in model loader.James1-1/+1
Signed-off-by: James <me@tfel.net>
2014-03-19Fix profiling of benchmarked names like 'something_endpoint_end'Richard Cunningham1-1/+1
2014-03-18More xss_clean() improvementsAndrey Andreev1-2/+2
Issue described in https://github.com/EllisLab/CodeIgniter/issues/2667#issuecomment-37980030 + a false positive
2014-03-18Another xss_clean() improvementAndrey Andreev1-2/+2
Fixes this: https://github.com/EllisLab/CodeIgniter/issues/2667#issuecomment-37958136
2014-03-18xss_clean() improvementAndrey Andreev1-4/+4
Fixes this: https://github.com/EllisLab/CodeIgniter/issues/2667#issuecomment-37819186
2014-03-17Fix DB forge unsigned attribute (PR #2949)Andrey Andreev1-15/+13
2014-03-17[ci skip] Clear some whitespaceAndrey Andreev1-3/+3
2014-03-17Making highlight_phrase() to be UTF-8 compatible on demand.Ivan Tcholakov1-1/+1
2014-03-14Merge pull request #2940 from aanbar/zip_mtime_fixAndrey Andreev1-1/+1
Fixed issue with _get_mod_time
2014-03-14Fixed coding style & line length.Ahmad Anbar1-1/+1
2014-03-14Fixed filemtimeAhmad Anbar1-1/+1
2014-03-14Added missing semicolonAhmad Anbar1-1/+1
2014-03-14Removed the requirment of quantity to trigger cart update.Ahmad Anbar1-24/+25
2014-03-13Image_lib - minor corrections on some comments.Ivan Tcholakov1-3/+3
2014-03-13Partially revert PR #2190Andrey Andreev11-33/+34
The core shouldn't depend on constants that are not defined by itself
2014-03-12Add support for protocol-relative URLs in HTML helpers img(), link_tag()Andrey Andreev1-3/+3
2014-03-12Check image path is include http:// or https://wuwx1-1/+1
2014-03-10Fix #2928, #2929Andrey Andreev2-1/+3
2014-03-10Fix #2928Andrey Andreev1-2/+5
2014-03-10Add support for callable form validation rulesAndrey Andreev2-35/+68
2014-03-06Fix #2919Andrey Andreev1-14/+30
2014-03-05Add support for simpler (Callable) hooks (issue #2917)Andrey Andreev1-1/+10
2014-03-04CI_Encryption: Remove MCrypt 'work-arounds' for CAST-128 compatibilityAndrey Andreev1-21/+4
Turns out it's OpenSSL's fault for performing 16 rounds instead of 12 for key sizes of 5-11 bytes. Reference: http://tools.ietf.org/rfc/rfc2144.txt
2014-03-04Fix #2916Andrey Andreev1-2/+5
2014-02-27Add parameter to CI_Input::user_agent()Andrey Andreev1-14/+2
2014-02-27Call db_connect(TRUE) instead of db_pconnect() + some style changesAndrey Andreev2-30/+30
2014-02-26Deprecate HTML helpers nbs(), br()Andrey Andreev1-0/+2
2014-02-26More removal of error suppression usageAndrey Andreev2-9/+6
2014-02-26Don't use error suppression on is_dir(), file_exists()Andrey Andreev10-15/+18
2014-02-26Don't use error suppression on realpath() + style adjustmentsAndrey Andreev10-107/+124
2014-02-25Revert to error suppression on mysql_(p)connect() due to deprecation messagesAndrey Andreev1-2/+2
2014-02-25Remove error suppression usage from db_connect()Andrey Andreev6-10/+10
2014-02-25Make db_pconnect an alias for db_connect(TRUE) and reduce code repetitionAndrey Andreev13-214/+51
2014-02-25Add array notation support for file field names in CI_UploadAndrey Andreev1-7/+28
Requested in #1691
2014-02-25Use strings instead of integers for migration version numbersAndrey Andreev2-17/+18
- Allows timestamp versions to work on 32-bit systems. - Fixes #2902. - Supersedes PR #2368.
2014-02-24Fix #2901Andrey Andreev1-1/+2
2014-02-24[ci skip] A tiny improvement in CI_EmailAndrey Andreev1-2/+8
2014-02-24Remove a needless check in CI_Output::append_output()Andrey Andreev1-9/+1
2014-02-24Really don't use globalsAndrey Andreev2-12/+13
2014-02-24Don't use globalsAndrey Andreev6-21/+16
- 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 docblockAndrey Andreev1-1/+1
2014-02-21More CI_Lang testsAndrey Andreev1-1/+1
2014-02-21Minor improvements to CI_FTPAndrey Andreev1-36/+25
2014-02-21Remove CI_Calendar::Andrey Andreev1-25/+19
Only use it in generate().
2014-02-21CI_Upload changesAndrey Andreev1-153/+129
- 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.