merged branch LennyLinux/master (PR #3236)

Commits
-------

4bc0c67 [HttpFoundation] fix a small copy and paste error

Discussion
----------

Just a small copy and paste error...

Bug fix: yes
Feature addition: no
Backwards compatibility break: no
Symfony2 tests pass: yes
Fixes the following tickets:
Todo:
This commit is contained in:
Fabien Potencier 2012-02-01 20:35:02 +01:00
commit d162243082

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 {