Browse Source

fix empty avatar value

main
ghost 3 years ago
parent
commit
be6040dd18
  1. 2
      src/application/controller/settings/profile.php

2
src/application/controller/settings/profile.php

@ -52,7 +52,7 @@ if (isset($_POST) && !empty($_POST)) {
$blockId = $_modelBlock->getThisBlock(); $blockId = $_modelBlock->getThisBlock();
// Avatar provided // Avatar provided
if (isset($_FILES['avatar']['tmp_name']) && getimagesize($_FILES['avatar']['tmp_name'])) { if (isset($_FILES['avatar']['tmp_name']) && file_exists($_FILES['avatar']['tmp_name']) && getimagesize($_FILES['avatar']['tmp_name'])) {
// Prepare image // Prepare image
$image = new Imagick(); $image = new Imagick();

Loading…
Cancel
Save