From 6cc8ea046ed51b28e671a8f550da9cb99ce63fe0 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Wed, 19 May 2010 14:33:16 -0400 Subject: [PATCH] ...and fix method call --- ansel/lib/Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansel/lib/Storage.php b/ansel/lib/Storage.php index f1b85f16f..76a7bda16 100644 --- a/ansel/lib/Storage.php +++ b/ansel/lib/Storage.php @@ -359,7 +359,7 @@ class Ansel_Storage $sql = 'SELECT share_id FROM ' . $this->_shares->getTable() . ' WHERE attribute_slug IN (' . str_repeat('?, ', count($slugs) - 1) . '?)'; - $stmt = $this->_shares->getReadDb->prepare($sql); + $stmt = $this->_shares->getReadDb()->prepare($sql); if ($stmt instanceof PEAR_Error) { throw new Horde_Exception($stmt->getMessage()); } -- 2.11.0