projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd71b9b
)
actually load the tags into the story array.
author
Michael J Rubinsky
<mrubinsk@horde.org>
Tue, 21 Dec 2010 15:43:41 +0000
(10:43 -0500)
committer
Michael 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
patch
|
blob
|
history
diff --git
a/jonah/lib/Driver/Sql.php
b/jonah/lib/Driver/Sql.php
index
5100a69
..
9d5b887
100644
(file)
--- 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;
}