diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe8bcf0..cb66fc01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ajax/ajax_notifications.php b/ajax/ajax_notifications.php index 048d7f0e..1dd53356 100644 --- a/ajax/ajax_notifications.php +++ b/ajax/ajax_notifications.php @@ -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);