summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-03-24 09:57:20 +0100
committerAndrey Andreev <narf@devilix.net>2014-03-24 09:57:20 +0100
commit24811f272a00682c38f447f93dca4b46e835db63 (patch)
treebdb2a11fb4001dea6a6d9af7fc658f446af907f8
parentc185e325fc0af2e79da34d6cf5e8635646b907a8 (diff)
parent28eca65d000c186f7a442e1f7716d3a5bf0a314c (diff)
Merge pull request #2959 from fabianozenatti/patch-1
Fix typo in CI_Input constructor
-rw-r--r--system/core/Input.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index 5ffe43d0e..925047040 100644
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -117,7 +117,7 @@ class CI_Input {
$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');
+ $this->_standardize_newlines = (bool) config_item('standardize_newlines');
$this->security =& load_class('Security', 'core');