Fix errors in pnut addon

pull/1579/head
Art4 2024-11-30 19:51:18 +00:00
parent 50912fdc17
commit 3f89aa1806
1 changed files with 2 additions and 0 deletions

View File

@ -1339,6 +1339,8 @@ class phpnut
*/ */
protected function updateUserImage(string $image, string $which='avatar') protected function updateUserImage(string $image, string $which='avatar')
{ {
$mimeType = '';
$test = @getimagesize($image); $test = @getimagesize($image);
if ($test && array_key_exists('mime', $test)) { if ($test && array_key_exists('mime', $test)) {
$mimeType = $test['mime']; $mimeType = $test['mime'];