diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-08 10:11:27 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-08 10:11:27 +0200 |
commit | 05e8c03b6742033cf88885cb86217cadca3a4567 (patch) | |
tree | c47848fa83305b93a386e79df72cb9515f595c46 /system/core/Input.php | |
parent | 8f8436080ed60dbd680f2792d475bbed944df78c (diff) |
Really fix #1715
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-x | system/core/Input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index 218eed3d7..0c1f2b08e 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -642,7 +642,7 @@ class CI_Input { // CSRF Protection check on HTTP requests - if ($this->_enable_csrf == TRUE && $this->is_cli_request()) + if ($this->_enable_csrf == TRUE && ! $this->is_cli_request()) { $this->security->csrf_verify(); } |