diff options
author | Chris Muench <me@chrismuench.com> | 2011-10-17 05:03:55 +0200 |
---|---|---|
committer | Chris Muench <me@chrismuench.com> | 2011-10-17 05:03:55 +0200 |
commit | 3ad3503ba56e1a3824ce19a3ce213eaaad7ffe8f (patch) | |
tree | 260d211d66cd49a430b77658f59474e5d58f6548 /system/libraries | |
parent | 9593349964e9ba557b14e8cda9c16b16498a55a5 (diff) |
Check for string value before doing str_replace. (Issue #439)
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Session.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system/libraries/Session.php b/system/libraries/Session.php index dd951c325..867314bf9 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -749,7 +749,10 @@ class CI_Session { */ function _unescape_slashes(&$val, $key) { - $val= str_replace('{{slash}}', '\\', $val); + if (is_string($val)) + { + $val= str_replace('{{slash}}', '\\', $val); + } } // -------------------------------------------------------------------- |