1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-06 22:26:32 +02:00

Version 1.5.3.3: Fix error image size in blox editor

This commit is contained in:
trendschau
2022-06-13 22:47:00 +02:00
parent 8fd1bef16f
commit da6a6dfcc5
4 changed files with 20 additions and 4 deletions

View File

@@ -205,7 +205,7 @@ class ControllerAuthorMediaApi extends ControllerAuthor
}
# publish image directly, used for example by image field for meta-tabs
if($this->params['publish'])
if(isset($this->params['publish']) && $this->params['publish'])
{
$imageProcessor->publishImage();
}