diff options
Diffstat (limited to 'lib/class/xmldata.class.php')
-rw-r--r-- | lib/class/xmldata.class.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/xmldata.class.php b/lib/class/xmldata.class.php index 71554464..cfb8805f 100644 --- a/lib/class/xmldata.class.php +++ b/lib/class/xmldata.class.php @@ -130,10 +130,10 @@ class xmlData { $string = ''; - foreach ($tags as $tag_id) { + foreach ($tags as $tag_id=>$data) { + $tag = new Tag($tag_id); - $tag->format($type,$object_id); - $string .= "\t<tag id=\"$tag->id\" count=\"$tag->weight\"><![CDATA[$tag->name]]></tag>\n"; + $string .= "\t<tag id=\"" . $tag->id . "\" count=\"" . $data['count'] . "\"><![CDATA[$tag->name]]></tag>\n"; } return $string; |