[HttpFoundation] fix a small copy and paste error

This commit is contained in:
Jörg Rühl 2012-02-01 17:25:43 +01:00
parent 4682b096f6
commit 4bc0c672df

View File

@ -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 {