summaryrefslogtreecommitdiffstats
path: root/system/libraries/Session/OldSessionWrapper.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2022-03-03 00:20:55 +0100
committerAndrey Andreev <narf@devilix.net>2022-03-03 00:20:55 +0100
commit3378180483140fa9251e50843bda15a508e85e89 (patch)
tree5511462e595ccd3d40033d5c2ec01154ff2aa7eb /system/libraries/Session/OldSessionWrapper.php
parentbb7192e43b251cb9620b35859f6283e80897c331 (diff)
parent4196eb22d7aa2f9d8325865567c2cbb82fd70960 (diff)
Merge branch '3.1-stable' into develop
Diffstat (limited to 'system/libraries/Session/OldSessionWrapper.php')
-rw-r--r--system/libraries/Session/OldSessionWrapper.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/system/libraries/Session/OldSessionWrapper.php b/system/libraries/Session/OldSessionWrapper.php
index a8bc1d0c0..d013c777f 100644
--- a/system/libraries/Session/OldSessionWrapper.php
+++ b/system/libraries/Session/OldSessionWrapper.php
@@ -29,7 +29,7 @@
* @package CodeIgniter
* @author EllisLab Dev Team
* @copyright Copyright (c) 2022, CodeIgniter Foundation (https://codeigniter.com/)
- * @license http://opensource.org/licenses/MIT MIT License
+ * @license https://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
* @since Version 3.0.0
* @filesource
@@ -47,7 +47,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
* @author Andrey Andreev
* @link https://codeigniter.com/userguide3/libraries/sessions.html
*/
-class CI_SessionWrapper implements SessionHandlerInterface {
+class CI_SessionWrapper implements SessionHandlerInterface, SessionUpdateTimestampHandlerInterface {
protected $driver;
@@ -85,4 +85,14 @@ class CI_SessionWrapper implements SessionHandlerInterface {
{
return $this->driver->gc($maxlifetime);
}
+
+ public function updateTimestamp($id, $data)
+ {
+ return $this->driver->updateTimestamp($id, $data);
+ }
+
+ public function validateId($id)
+ {
+ return $this->driver->validateId($id);
+ }
}