Remove nl2br

This commit is contained in:
2024-07-27 16:12:03 +02:00
parent 64311f2765
commit 43e2c6c0ad
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -245,7 +245,9 @@ class User implements JsonSerializable
b.id, b.benutzer, b.status, b.email, b.image, b.isadmin, b.zeitstempel,
(SELECT COUNT(*) FROM egb_gaestebuch WHERE benutzer_id = b.id) as postCount
FROM
egb_benutzer AS b"
egb_benutzer AS b
LIMIT $limit
OFFSET " . ($page * $limit)
);
$stmt->execute();
$data = $stmt->fetchAll();