Changelog Update, Allow to view unlimited notifications

This commit is contained in:
johnnyq
2025-02-21 21:50:44 -05:00
parent 86212ee088
commit 9b5eb86cac
2 changed files with 2 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ require_once '../includes/ajax_header.php';
$sql = mysqli_query($mysqli, "SELECT * FROM notifications
WHERE notification_user_id = $session_user_id
AND notification_dismissed_at IS NULL
ORDER BY notification_id DESC LIMIT 8"
ORDER BY notification_id"
);
$num_notifications = mysqli_num_rows($sql);