diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-11-19 00:25:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-11-19 00:25:50 +0000 |
commit | d60ba66efd6cf40dfd2bcae8294d5b8da48b3194 (patch) | |
tree | 3340ddf464f1250cb0c37f75c3d30f8c9e9e12f5 /lib/class/xmldata.class.php | |
parent | 3da4eb16219f9b254eeda68a78f3170dcc33b932 (diff) | |
download | ampache-d60ba66efd6cf40dfd2bcae8294d5b8da48b3194.tar.gz ampache-d60ba66efd6cf40dfd2bcae8294d5b8da48b3194.tar.bz2 ampache-d60ba66efd6cf40dfd2bcae8294d5b8da48b3194.zip |
sync of fix for #554
Diffstat (limited to 'lib/class/xmldata.class.php')
-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 c1f027be..5b1949cf 100644 --- a/lib/class/xmldata.class.php +++ b/lib/class/xmldata.class.php @@ -188,7 +188,7 @@ class xmlData { "\t<name><![CDATA[$tag->name]]></name>\n" . "\t<albums>" . intval($counts['album']) . "</albums>\n" . "\t<artists>" . intval($counts['artist']) . "</artists>\n" . - "\t<songs>" . intval($counts['songs']) . "</songs>\n" . + "\t<songs>" . intval($counts['song']) . "</songs>\n" . "\t<videos>" . intval($counts['video']) . "</videos>\n" . "\t<playlists>" . intval($count['playlist']) . "</playlists>\n" . "\t<stream>" . intval($count['live_stream']) . "</stream>\n" . |