summaryrefslogtreecommitdiffstats
path: root/lib/class/xmldata.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-04-14 21:35:19 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-04-14 21:35:19 +0000
commit8858b6bc5a823061ade1a3b32b109b605682b51f (patch)
treeddee580a19a5a81e021c45dc7f03009c8e8be2da /lib/class/xmldata.class.php
parentd3728b89e060bbdc32f1447d6ea79b19dd7746e8 (diff)
downloadampache-8858b6bc5a823061ade1a3b32b109b605682b51f.tar.gz
ampache-8858b6bc5a823061ade1a3b32b109b605682b51f.tar.bz2
ampache-8858b6bc5a823061ade1a3b32b109b605682b51f.zip
fix typo in video xml
Diffstat (limited to 'lib/class/xmldata.class.php')
-rw-r--r--lib/class/xmldata.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/xmldata.class.php b/lib/class/xmldata.class.php
index db704ad2..62267c4b 100644
--- a/lib/class/xmldata.class.php
+++ b/lib/class/xmldata.class.php
@@ -364,8 +364,8 @@ class xmlData {
$string .= "<video id=\"$video->id\">\n" .
"\t<title><![CDATA[$video->title]]></title>\n" .
"\t<mime><![CDATA[$video->mime]]></mime>\n" .
- "\t<resolution>$this->f_resolution</resolution>\n" .
- "\t<size>$this->size</size>\n" .
+ "\t<resolution>$video->f_resolution</resolution>\n" .
+ "\t<size>$video->size</size>\n" .
self::tags_string($video->tags,'video',$video->id) .
"\t<url><![CDATA[" . Video::play_url($video->id) . "]]></url>\n" .
"</video>\n";