Skip to content

Commit

Permalink
Fix a wrong var name in CI_Session::mark_as_temp()
Browse files Browse the repository at this point in the history
  • Loading branch information
narfbg committed Feb 2, 2015
1 parent 05afe3e commit 43df7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/libraries/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ public function mark_as_temp($key, $ttl = 300)
return FALSE;
}

$temp[$k] = $ts;
$temp[$k] = $v;
}

$_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars'])
Expand Down

0 comments on commit 43df7bd

Please sign in to comment.