summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2013-09-24fix #2637David Cox Jr1-1/+1
cleaned up the regex to remove extra qualifiers used character sets where possible for clarity main expression optimized
2013-09-23Fix issue #33Andrey Andreev1-7/+24
2013-09-22Fixes Issue 2637David Cox Jr1-1/+1
more elegant way to make sure that the comment is not in a js string var
2013-09-14[ci skip] Remove empty linesAndrey Andreev2-2/+2
2013-09-14No need of this anymorevkeranov1-3/+2
2013-09-14No need of this anymorevkeranov1-2/+1
2013-09-13Merge pull request #2641 from aanbar/developAndrey Andreev1-1/+1
Fixed issue #2638
2013-09-13Improvements to safe_mode detection (it doesn't exist in PHP 5.4)Andrey Andreev2-5/+3
2013-09-13Drop the unused parameter from log_message() / CI_Log::write_log()Andrey Andreev3-4/+4
2013-09-12Removed new line from the end of the file.Ahmad Anbar1-1/+1
2013-09-12Fixed issue #2638 which prevented loading models in sub-folders by passing ↵Ahmad Anbar1-2/+2
an array.
2013-09-12Merge pull request #2633 from kaiwangchen/simulate_complete_exception_handlerAndrey Andreev2-0/+29
Simulate a complete custom exception handler by redirecting uncaught events
2013-09-12Fixed coding stylejudge1-3/+8
2013-09-12Remove unnecessary chdir() in the shutdown handler.Kaiwang Chen1-1/+0
2013-09-11Simulate a complete custom exception handler by redirecting uncaught events.Kaiwang Chen2-0/+30
2013-09-10Fixed coding stylejudge1-9/+13
2013-09-10Remove Javascript inline comments + improved detecting whether the pointer ↵judge1-4/+4
is in a string or not
2013-09-10Improved detecting whether the pointer is in a string or notjudge1-2/+22
2013-09-10Removed unnecessary parameterjudge1-1/+1
2013-09-10fixed error in finding closing tagjudge1-1/+1
2013-08-19Kill the damn kittenAndrey Andreev1-2/+2
2013-08-19Adjustments in static reference handlingvlakoff1-8/+5
2013-08-19Allow items to be set even if they were not present yetvlakoff1-5/+2
2013-08-19Ensure get_config() optional argument is an array, remove useless testvlakoff1-7/+4
2013-08-17Fix $replace parameter handling in get_config()vlakoff2-28/+32
Code was reached only on first function call, then short-circuited because of the reference cache.
2013-08-11Input class: change behavior of get_post() method, add post_get() methodvlakoff1-1/+17
followup to PR #2522
2013-08-07Add a changelog entry for PR #2590 and further optimize log_message()Andrey Andreev1-11/+1
CI_Log::write_log() already checks the log threshold, so there's no point in doing it in log_message() as well.
2013-08-07Fix noneffective static variable cache in log_message()vlakoff1-2/+3
2013-08-06Replace php_sapi_name() function with PHP_SAPI constantvlakoff2-2/+2
exact same behavior but faster, shorter
2013-08-06Various typos and tabs adjustmentsvlakoff3-5/+5
2013-08-04Rename bad chars property to filename_bad_chars, remove the setter and add ↵Hunter Wu1-15/+2
changelog entry
2013-08-03Make the bad filename array public in Security libraryHunter Wu1-18/+38
2013-08-03Revert "Add windows filename rule as an option for upload files"Hunter Wu1-32/+19
This reverts commit 23719ab569c9c8d6b791f65d7861daba3895ddcb.
2013-08-01Add windows filename rule as an option for upload filesHunter Wu1-19/+32
2013-07-25Uniformize slash_item() with item()vlakoff1-2/+2
2013-07-25Adjustments to the previous commitvlakoff1-1/+1
2013-07-24config->item() now returns NULL instead of FALSE when the required item ↵vlakoff1-3/+3
doesn't exist. Uniformization with other functions. This also brings the ability to properly use booleans in configuration.
2013-07-23Loader changes & optimizations related to issue #2551Andrey Andreev1-32/+31
2013-07-22Give Drivers a higher priority in the autoloaderAndrey Andreev1-9/+9
2013-07-22Change class filenames to UcfirstAndrey Andreev3-25/+26
2013-07-19Router improvementsAndrey Andreev2-19/+38
- Make dashes-to-underscores URI segment replacement configurable via ['translate_uri_dashes']. - Make _set_routing() protected and move the call to the class constructor. - Remove redudant calls to set_class() and set_method(). - Clean-up/optimize the routes loading procedure. (fixes issue #2503)
2013-07-19Fix config_item() returning stale valuesvlakoff1-10/+5
Use case fixed: config_item('foobar'); // returns "some value" $CI->config->set_item('foobar', 'new value'); config_item('foobar'); // still returns "some value", expected "new value"
2013-07-06The script is halted and a '500 Internal Server Error' is issued when a ↵Jesse van Assen1-0/+21
fatal error occurs. Signed-off-by: Jesse van Assen <jesse.v.assen@gmail.com>
2013-07-01Issue #2508Andrey Andreev1-2/+2
2013-06-24Merge pull request #2488 from Xeli/developAndrey Andreev1-1/+14
Add support for https behind a reverse proxy using X-Forwarded-Proto
2013-06-24some more readablility tweaks in system/core/CommonRichard Deurwaarder (Xeli)1-2/+3
2013-06-24remove else clause in is_https function, just add return FALSE as fallbackRichard Deurwaarder (Xeli)1-4/+1
2013-06-24remove newline again in system/core/Common.php, silly editor keeps adding itRichard Deurwaarder (Xeli)1-1/+1
2013-06-24fix indentation according to codeigniter codestyle system/core/CommonRichard Deurwaarder (Xeli)1-18/+18
2013-06-24Revert "remove newline at eof in syste/core/Common"Richard Deurwaarder (Xeli)1-1/+1
This reverts commit 7061bd014b6b7dbf89bf42e940aa134228f044ce.