This commit is contained in:
Knah Tsaeb 2013-08-20 16:29:33 +02:00
parent 749d6ac386
commit da45a53134
1 changed files with 7 additions and 7 deletions

View File

@ -464,16 +464,16 @@ function getVideoInfo($file, $dir, $fullListFile) {
$info = array(
'hash' => $file,
'title' => $postInfo['title'],
'originalTitle' => htmlentities($jsonInfo -> stitle),
'originalTitle' => htmlentities($jsonInfo -> stitle, ENT_QUOTES, "UTF-8"),
'url' => $postInfo['url'],
'desc' => $postInfo['desc'],
'originalDesc' => htmlentities($jsonInfo -> description),
'originalDesc' => htmlentities($jsonInfo -> description, ENT_QUOTES, "UTF-8"),
'uploadDateSort' => $postInfo['uploadDateSort'],
'uploadDate' => htmlentities($jsonInfo -> upload_date),
'format' => htmlentities($jsonInfo -> format),
'ext' => htmlentities($jsonInfo -> ext),
'duration' => htmlentities($time),
'size' => htmlentities($size),
'uploadDate' => htmlentities($jsonInfo -> upload_date, ENT_QUOTES, "UTF-8"),
'format' => htmlentities($jsonInfo -> format, ENT_QUOTES, "UTF-8"),
'ext' => htmlentities($jsonInfo -> ext, ENT_QUOTES, "UTF-8"),
'duration' => htmlentities($time, ENT_QUOTES, "UTF-8"),
'size' => htmlentities($size, ENT_QUOTES, "UTF-8"),
'via' => $postInfo['via'],
'licence' => $postInfo['licence']
);