From: Chuck Hagenbuch Date: Mon, 2 Nov 2009 04:29:48 +0000 (-0500) Subject: Fix parameters to getImages() X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=feef73208280602b648b06e47985f8a93e134617;p=horde.git Fix parameters to getImages() --- diff --git a/ansel/lib/Tags.php b/ansel/lib/Tags.php index 2c4fea1d9..ae2b85d6e 100644 --- a/ansel/lib/Tags.php +++ b/ansel/lib/Tags.php @@ -519,7 +519,7 @@ class Ansel_Tags_Search { return $iresults; } - $images = count($iresults['images']) ? array_values($GLOBALS['ansel_storage']->getImages($iresults['images'])) : array(); + $images = count($iresults['images']) ? array_values($GLOBALS['ansel_storage']->getImages(array('ids' => $iresults['images']))) : array(); if (($conf['comments']['allow'] == 'all' || ($conf['comments']['allow'] == 'authenticated' && Horde_Auth::getAuth())) && $registry->hasMethod('forums/numMessagesBatch')) {