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

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

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']);