diff options
author | Kevin James 'purdyk' Purdy <purdyk@gmail.com> | 2008-12-02 19:26:55 +0000 |
---|---|---|
committer | Kevin James 'purdyk' Purdy <purdyk@gmail.com> | 2008-12-02 19:26:55 +0000 |
commit | c07ea5d5d4d94db4b8b4d98b2e5d2b7f72031d9d (patch) | |
tree | 5393d3613f17c2a26cf9e75881f81e1b2c9f2ac1 | |
parent | 6d8a3aef986e3d735c4c1b62241735cd2ee186ab (diff) | |
download | ampache-c07ea5d5d4d94db4b8b4d98b2e5d2b7f72031d9d.tar.gz ampache-c07ea5d5d4d94db4b8b4d98b2e5d2b7f72031d9d.tar.bz2 ampache-c07ea5d5d4d94db4b8b4d98b2e5d2b7f72031d9d.zip |
Fixed typo in playlist xml.
-rw-r--r-- | lib/class/xmldata.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/xmldata.class.php b/lib/class/xmldata.class.php index 5a1e89bb..1fc7bc2e 100644 --- a/lib/class/xmldata.class.php +++ b/lib/class/xmldata.class.php @@ -222,7 +222,7 @@ class xmlData { // Build this element $string .= "<playlist id=\"$playlist->id\">\n" . "\t<name><![CDATA[$playlist->name]]></name>\n" . - "\t<owner><![CDATA[$playlist->f_user]]</owner>\n" . + "\t<owner><![CDATA[$playlist->f_user]]></owner>\n" . "\t<items>$item_total</items>\n" . "\t<type>$playlist->type</type>\n" . "</playlist>\n"; |