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

@ -10,6 +10,7 @@ This file documents all notable changes made to ITFlow.
- Clone asset interfaces when assets are transferred between clients
### Added / Changed
- Simple Drag and Drop Ordering for Invoices, Recurring Invoices, Quotes, Ticket Tasks and Ticket Template Tasks.
- Added a kanban view for tickets
- Migrated all repeating modals to new ajax modal function for faster loading times and to allow for very quick development
- Clients can upload PDF documents to accepted quotes

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