diff --git a/modules/core/lib/Storage/SQLPermanentStorage.php b/modules/core/lib/Storage/SQLPermanentStorage.php index 54bb5642bf1b59201b850164f1ac343489d4b64a..b7e6a3b7899768189479aa334bbf89a232ad393b 100644 --- a/modules/core/lib/Storage/SQLPermanentStorage.php +++ b/modules/core/lib/Storage/SQLPermanentStorage.php @@ -193,12 +193,9 @@ class sspmod_core_Storage_SQLPermanentStorage { if (!is_null($type)) $conditions[] = "type = '" . sqlite_escape_string($type) . "'"; if (!is_null($key1)) $conditions[] = "key1 = '" . sqlite_escape_string($key1) . "'"; if (!is_null($key2)) $conditions[] = "key2 = '" . sqlite_escape_string($key2) . "'"; - - if (count($conditions) === 0) return '1'; - - $condition = join(' AND ', $conditions); - - return $condition; + + $conditions[] = "(expire = NULL OR expire >= ".time().")"; + return join(' AND ', $conditions); }