From: Michael J Rubinsky Date: Tue, 21 Dec 2010 15:43:41 +0000 (-0500) Subject: actually load the tags into the story array. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c5914cc94ac185dd514b9e562091b153976511ec;p=horde.git actually load the tags into the story array. Temp fix until moved to Content/Tagger --- diff --git a/jonah/lib/Driver/Sql.php b/jonah/lib/Driver/Sql.php index 5100a6914..9d5b8873d 100644 --- a/jonah/lib/Driver/Sql.php +++ b/jonah/lib/Driver/Sql.php @@ -468,7 +468,9 @@ class Jonah_Driver_Sql extends Jonah_Driver if ($results instanceof PEAR_Error) { throw new Jonah_Exception($results); } - + foreach ($results as &$row) { + $row['tags'] = $this->readTags($row['id']); + } return $results; }