From 4bc0c672df5a4e3fbfa50a70da570a84560f0b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20R=C3=BChl?= Date: Wed, 1 Feb 2012 17:25:43 +0100 Subject: [PATCH] [HttpFoundation] fix a small copy and paste error --- .../HttpFoundation/SessionStorage/PdoSessionStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/SessionStorage/PdoSessionStorage.php b/src/Symfony/Component/HttpFoundation/SessionStorage/PdoSessionStorage.php index 1debd633c2..24898b7c20 100644 --- a/src/Symfony/Component/HttpFoundation/SessionStorage/PdoSessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/SessionStorage/PdoSessionStorage.php @@ -150,7 +150,7 @@ class PdoSessionStorage extends NativeSessionStorage $dbTable = $this->dbOptions['db_table']; $dbTimeCol = $this->dbOptions['db_time_col']; - // delete the record associated with this id + // delete the session records that have expired $sql = "DELETE FROM $dbTable WHERE $dbTimeCol < (:time - $lifetime)"; try {