summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2011-04-20 03:19:17 +0200
committerGreg Aker <greg.aker@ellislab.com>2011-04-20 03:19:17 +0200
commitb3e614d8b2293c079bcfb9cfdf071c041cbc4722 (patch)
tree856debf36944264895d7b64e824863533be58b2a /system/core
parentbab1a6aab7aa9bd2ba0ad7bc51973dd00d273b31 (diff)
Change in core/Security.php to match coding standards.
Diffstat (limited to 'system/core')
-rw-r--r--system/core/Security.php3
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;
}