diff options
author | Andrey Andreev <narf@devilix.net> | 2014-01-08 17:32:05 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-01-08 17:32:05 +0100 |
commit | bfb635b276d880336db795f1a603de66ccfc80f6 (patch) | |
tree | 1f1edf4376188523c79ff9e5084492b6af713923 /system/core/Input.php | |
parent | 80a16b1cd0d4716b5ea41497685a8fac02e34333 (diff) |
Make newline standardization configurable
Added ['standardize_newlines']
Also altered the Session cookie driver, which experienced issues with this
feature due to it's HMAC verification failing after the Input class alters
newlines in non-encrypted session cookies.
Supersedes PR #2470
Diffstat (limited to 'system/core/Input.php')
-rw-r--r-- | system/core/Input.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index f5123fa5b..ccb70daec 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -63,7 +63,7 @@ class CI_Input { protected $_allow_get_array = TRUE; /** - * Standartize new lines flag + * Standardize new lines flag * * If set to TRUE, then newlines are standardized. * @@ -121,9 +121,10 @@ class CI_Input { { log_message('debug', 'Input Class Initialized'); - $this->_allow_get_array = (config_item('allow_get_array') === TRUE); - $this->_enable_xss = (config_item('global_xss_filtering') === TRUE); - $this->_enable_csrf = (config_item('csrf_protection') === TRUE); + $this->_allow_get_array = (config_item('allow_get_array') === TRUE); + $this->_enable_xss = (config_item('global_xss_filtering') === TRUE); + $this->_enable_csrf = (config_item('csrf_protection') === TRUE); + $this->_sandardize_newlines = (bool) config_item('standardize_newlines'); global $SEC; $this->security =& $SEC; |