actually load the tags into the story array.
authorMichael J Rubinsky <mrubinsk@horde.org>
Tue, 21 Dec 2010 15:43:41 +0000 (10:43 -0500)
committerMichael J Rubinsky <mrubinsk@horde.org>
Tue, 21 Dec 2010 15:45:15 +0000 (10:45 -0500)
Temp fix until moved to Content/Tagger

jonah/lib/Driver/Sql.php

index 5100a69..9d5b887 100644 (file)
@@ -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;
     }