Merge pull request #2944 from annando/1611-bugfix-utf8

Avoid UTF8 warning in mod/proxy.php
This commit is contained in:
Tobias Diekershoff 2016-11-20 09:44:38 +01:00 committed by GitHub
commit 24d31d3092
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ function proxy_url($url, $writemode = false, $size = '') {
}
// Image URL may have encoded ampersands for display which aren't desirable for proxy
$url = html_entity_decode($url, ENT_NOQUOTES, 'UTF8');
$url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
// Creating a sub directory to reduce the amount of files in the cache directory
$basepath = $a->get_basepath() . '/proxy';