summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Barnes <eric@ericlbarnes.com>2011-10-17 14:42:09 +0200
committerEric Barnes <eric@ericlbarnes.com>2011-10-17 14:42:09 +0200
commit112e2bebadc0abe346bb1dffddc150421ebb0862 (patch)
treefb4feea0fcd46e34ab92c8871707e4626df4daf1
parent43ded090371c42e99b0f104de62cc284fd332c4e (diff)
parent3ad3503ba56e1a3824ce19a3ce213eaaad7ffe8f (diff)
Merge pull request #586 from blasto333/develop
Check for string value before doing str_replace. (Issue #439)
-rw-r--r--system/libraries/Session.php5
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);
+ }
}
// --------------------------------------------------------------------