fixed a bug when call Frame->save() when set is true
This commit is contained in:
parent
3d0753cc54
commit
8b03686aef
1 changed files with 4 additions and 1 deletions
|
|
@ -115,7 +115,10 @@ class Frame extends AbstractMediaType
|
|||
$commands = array_merge($commands, $filter->apply($this));
|
||||
}
|
||||
|
||||
$commands = array_merge($commands, array($pathfile));
|
||||
// without output filename when return binary string
|
||||
if(!$returnBase64) {
|
||||
$commands = array_merge($commands, array($pathfile));
|
||||
}
|
||||
|
||||
try {
|
||||
if(!$returnBase64) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue