Development

Changeset 4891

You must first sign up to be able to contribute.

Changeset 4891

Show
Ignore:
Timestamp:
08/23/07 17:49:41 (1 year ago)
Author:
fabien
Message:

fixed a typo in sfPostgreSQLSessionStorage::sessionGC()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/lib/storage/sfPostgreSQLSessionStorage.class.php

    r3329 r4891  
    139139 
    140140    // delete the record associated with this id 
    141     $sql = 'DELETE FROM '.$db_table.' WHERE '.$db_time_col.' < '.$lifetime; 
     141    $sql = 'DELETE FROM '.$db_table.' WHERE '.$db_time_col.' < '.$time; 
    142142 
    143143    if (@pg_query($this->resource, $sql))