diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 03:19:17 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 03:19:17 +0200 |
commit | b3e614d8b2293c079bcfb9cfdf071c041cbc4722 (patch) | |
tree | 856debf36944264895d7b64e824863533be58b2a /system | |
parent | bab1a6aab7aa9bd2ba0ad7bc51973dd00d273b31 (diff) |
Change in core/Security.php to match coding standards.
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Security.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/core/Security.php b/system/core/Security.php index 4f91572ed..3617cadcc 100644 --- a/system/core/Security.php +++ b/system/core/Security.php @@ -68,7 +68,8 @@ class CI_Security { } // Append application specific cookie prefix - if (config_item('cookie_prefix')) { + if (config_item('cookie_prefix')) + { $this->_csrf_cookie_name = config_item('cookie_prefix').$this->_csrf_cookie_name; } |