[pkg-horde] [SCM] Debian Horde Packages repository: horde3 package branch, debian-lenny, updated. 244771356d5ee1a12d926ce1791a7ab4a870ca3b

Gregory Colpart reg at debian.org
Wed Nov 3 22:53:14 UTC 2010


The following commit has been merged in the debian-lenny branch:
commit f4ccb276526a85fb777eda7f4aa2203fc62c62d4
Author: Gregory Colpart <reg at debian.org>
Date:   Sun Oct 31 18:58:54 2010 +0100

    Fix annoying bug in cache sql driver (Closes: #566610)

diff --git a/debian/changelog b/debian/changelog
index be0f462..38017ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,9 @@ horde3 (3.2.2+debian0-2+lenny3) stable-security; urgency=high
 
   * Fix typo in patch for CVE-2009-3236. 
   * Fix CVE-2010-3077 and CVE-2010-3694 (Closes: #598582) 
+  * Fix annoying bug in cache sql driver (Closes: #566610) 
 
- -- Gregory Colpart <reg at debian.org>  Sun, 31 Oct 2010 00:59:05 +0200
+ -- Gregory Colpart <reg at debian.org>  Sun, 31 Oct 2010 18:58:03 +0100
 
 horde3 (3.2.2+debian0-2+lenny2) stable-security; urgency=high
 
diff --git a/lib/Horde/Cache/sql.php b/lib/Horde/Cache/sql.php
index e2f0cde..6f653a0 100644
--- a/lib/Horde/Cache/sql.php
+++ b/lib/Horde/Cache/sql.php
@@ -387,7 +387,7 @@ class Horde_Cache_sql extends Horde_Cache {
         }
 
         $query = 'DELETE FROM ' . $this->_params['table']
-            . ' WHERE cache_expiration < ? AND cache_expiration != 0';
+            . ' WHERE cache_expiration < ? AND cache_expiration <> 0';
         $values = array(time());
 
         $result = $this->_write_db->query($query, $values);

-- 
Debian Horde Packages repository: horde3 package



More information about the pkg-horde-hackers mailing list