this fixes the comment display issue
Co-authored-by: Austin Huang <im@austinhuang.me>
This commit is contained in:
parent
b8e8755fb1
commit
0c4852c099
1 changed files with 1 additions and 1 deletions
|
@ -582,7 +582,7 @@ class Database extends AbstractData
|
||||||
// workaround for https://bugs.php.net/bug.php?id=46728
|
// workaround for https://bugs.php.net/bug.php?id=46728
|
||||||
$result = array();
|
$result = array();
|
||||||
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
|
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$result[] = $row;
|
$result[] = array_map('self::_sanitizeClob', $row);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
|
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
|
Loading…
Reference in a new issue