1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-13 18:40:49 +01:00

vichan likes to error on the ban appeals page if this isn't set this way

This commit is contained in:
Lorenzo Yario 2024-04-19 12:03:49 -07:00 committed by GitHub
parent 19fa804116
commit 85471e007e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -356,10 +356,17 @@ class Post {
unset($this->files[$i]);
continue;
}
if (!isset($file->hash))
if (is_array($file)) {
if (!isset($file['hash'])) {
$file['hash'] = $this->filehash;
}
} else if (is_object($file)) {
if (!isset($file->hash)) {
$file->hash = $this->filehash;
}
}
}
}
$this->subject = utf8tohtml($this->subject);
$this->name = utf8tohtml($this->name);