From feef73208280602b648b06e47985f8a93e134617 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sun, 1 Nov 2009 23:29:48 -0500 Subject: [PATCH] Fix parameters to getImages() --- ansel/lib/Tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')) { -- 2.11.0