display.php: trim

This commit is contained in:
Zankaria 2024-07-13 11:30:31 +02:00
parent 5a805fefae
commit 582a08eee4

View file

@ -314,7 +314,7 @@ class Post {
}
if (isset($this->files) && $this->files)
$this->files = @json_decode($this->files);
$this->files = json_decode($this->files);
$this->subject = utf8tohtml($this->subject);
$this->name = utf8tohtml($this->name);
@ -419,4 +419,3 @@ class Thread {
return $built;
}
};