changed the way the url is escaped. should fix #14

This commit is contained in:
Christian Haschek 2022-03-08 22:00:58 +01:00
parent ce3b71c934
commit 637a781f24
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ $resizewidth = $_GET['width'];
$cache = $_GET['cache'];
$onfail = rawurldecode($_GET['onfail']);
$params = array('url'=>$url,
$params = array('url'=>trim($url),
'type'=>$type,
'timeout'=>$timeout,
'viewport'=>$viewport,

View File

@ -210,7 +210,7 @@ class http2pic
$cmd.=' -f png';
//add url to cmd
$cmd.=' '.escapeshellarg($this->params['url']);
$cmd.=' \''.addslashes($this->params['url']).'\'';
//add storage path to cmd
$cmd.=' '.escapeshellarg($this->params['file']);