this fixes the comment display issue

Co-authored-by: Austin Huang <im@austinhuang.me>
This commit is contained in:
El RIDO
2022-01-24 21:40:10 +01:00
committed by GitHub
parent b8e8755fb1
commit 0c4852c099

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);