summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-10-08 10:11:27 +0200
committerAndrey Andreev <narf@bofh.bg>2012-10-08 10:11:27 +0200
commit05e8c03b6742033cf88885cb86217cadca3a4567 (patch)
treec47848fa83305b93a386e79df72cb9515f595c46 /system
parent8f8436080ed60dbd680f2792d475bbed944df78c (diff)
Really fix #1715
Diffstat (limited to 'system')
-rwxr-xr-xsystem/core/Input.php2
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();
}