From 98f19eefaa5d3df0b3047fde74ab31910c8351a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Fri, 16 Oct 2009 12:38:00 +0000 Subject: [PATCH] fix typo in sql permanent storage git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1863 44740490-163a-0410-bde0-09ae8108e29a --- modules/core/lib/Storage/SQLPermanentStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/lib/Storage/SQLPermanentStorage.php b/modules/core/lib/Storage/SQLPermanentStorage.php index 69a85946c..d1f5f2c96 100644 --- a/modules/core/lib/Storage/SQLPermanentStorage.php +++ b/modules/core/lib/Storage/SQLPermanentStorage.php @@ -152,7 +152,7 @@ class sspmod_core_Storage_SQLPermanentStorage { public function removeExpired() { $query = "DELETE FROM data WHERE expire NOT NULL AND expire < " . time(); $this->db->arrayQuery($query, SQLITE_ASSOC); - $changes = $this->db>changes; + $changes = $this->db->changes(); return $changes; } -- GitLab