Stop using pathinfo (fixes #272)
Because it does not handle UTF-8 filenames correctly
This commit is contained in:
parent
08d61b4bec
commit
a478aea3ca
1 changed files with 1 additions and 8 deletions
|
@ -274,14 +274,7 @@ class Video
|
||||||
*/
|
*/
|
||||||
public function getFileNameWithExtension($extension)
|
public function getFileNameWithExtension($extension)
|
||||||
{
|
{
|
||||||
return html_entity_decode(
|
return str_replace('.' . $this->ext, '.' . $extension, $this->getFilename());
|
||||||
pathinfo(
|
|
||||||
$this->getFilename(),
|
|
||||||
PATHINFO_FILENAME
|
|
||||||
) . '.' . $extension,
|
|
||||||
ENT_COMPAT,
|
|
||||||
'ISO-8859-1'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue