diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-07-03 10:32:51 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-07-03 10:32:51 +0200 |
commit | ec2477f3d1c0bf8dbf1bd8c3aa4b5ecbea8ded95 (patch) | |
tree | 163b4a099653af048a3fb62922b5bda380938985 | |
parent | f1b3e39c68e0f498e9ccb4156b84a7eb0a768c03 (diff) | |
parent | d55f74999a24394241b398cd52679bf1b81f11c2 (diff) |
Merge pull request #1566 from Dumk0/patch-4
replaced double quotes with single in $config['cookie_... string values
-rw-r--r-- | application/config/config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/config/config.php b/application/config/config.php index 726e3a71c..28fc406d1 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -300,9 +300,9 @@ $config['sess_time_to_update'] = 300; | 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript) | */ -$config['cookie_prefix'] = ""; -$config['cookie_domain'] = ""; -$config['cookie_path'] = "/"; +$config['cookie_prefix'] = ''; +$config['cookie_domain'] = ''; +$config['cookie_path'] = '/'; $config['cookie_secure'] = FALSE; $config['cookie_httponly'] = FALSE; |