this fixes the comment display issue

Co-authored-by: Austin Huang <im@austinhuang.me>
pull/872/head
El RIDO 2022-01-24 21:40:10 +01:00 committed by GitHub
parent b8e8755fb1
commit 0c4852c099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -582,7 +582,7 @@ class Database extends AbstractData
// workaround for https://bugs.php.net/bug.php?id=46728
$result = array();
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
$result[] = $row;
$result[] = array_map('self::_sanitizeClob', $row);
}
} else {
$result = $statement->fetchAll(PDO::FETCH_ASSOC);