1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 10:49:37 +02:00

fix typo in video xml

This commit is contained in:
Karl 'vollmerk' Vollmer 2009-04-14 21:35:19 +00:00
parent d3728b89e0
commit 8858b6bc5a

View file

@ -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";