From 43df7bda07b1d0949bd50fb21148668fa6c235f5 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Mon, 2 Feb 2015 23:22:29 +0200 Subject: Fix a wrong var name in CI_Session::mark_as_temp() --- system/libraries/Session/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries') diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php index 5f7791dee..2551e54e9 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -489,7 +489,7 @@ class CI_Session { return FALSE; } - $temp[$k] = $ts; + $temp[$k] = $v; } $_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars']) -- cgit v1.2.3-24-g4f1b