From: Michael J. Rubinsky Date: Wed, 19 May 2010 18:33:16 +0000 (-0400) Subject: ...and fix method call X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6cc8ea046ed51b28e671a8f550da9cb99ce63fe0;p=horde.git ...and fix method call --- 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()); }