summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorPascal Kriete <pascal@pascalkriete.com>2012-10-17 17:27:29 +0200
committerPascal Kriete <pascal@pascalkriete.com>2012-10-17 17:27:29 +0200
commit28dc2023d32e1d997e2b90052f1960f98a255d2c (patch)
tree8fa12979bc726471736d4541a4eff4a21fe38c15 /system
parentf69f0e8f02815d44e218b013c8da92cebabbdcb1 (diff)
Changing session error logging verbiage to be a little less unsettling.
Signed-off-by: Pascal Kriete <pascal@pascalkriete.com>
Diffstat (limited to 'system')
-rwxr-xr-xsystem/libraries/Session/drivers/Session_cookie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/drivers/Session_cookie.php b/system/libraries/Session/drivers/Session_cookie.php
index b44c8330e..51d94da4e 100755
--- a/system/libraries/Session/drivers/Session_cookie.php
+++ b/system/libraries/Session/drivers/Session_cookie.php
@@ -386,7 +386,7 @@ class CI_Session_cookie extends CI_Session_driver {
if ($hmac !== hash_hmac('sha1', $session, $this->encryption_key))
{
- log_message('error', 'The session cookie data did not match what was expected. This could be a possible hacking attempt.');
+ log_message('error', 'The session cookie data did not match what was expected.');
$this->sess_destroy();
return FALSE;
}