mirror of https://github.com/itflow-org/itflow
Changelog Update, Allow to view unlimited notifications
This commit is contained in:
parent
86212ee088
commit
9b5eb86cac
|
|
@ -10,6 +10,7 @@ This file documents all notable changes made to ITFlow.
|
||||||
- Clone asset interfaces when assets are transferred between clients
|
- Clone asset interfaces when assets are transferred between clients
|
||||||
|
|
||||||
### Added / Changed
|
### Added / Changed
|
||||||
|
- Simple Drag and Drop Ordering for Invoices, Recurring Invoices, Quotes, Ticket Tasks and Ticket Template Tasks.
|
||||||
- Added a kanban view for tickets
|
- 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
|
- 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
|
- Clients can upload PDF documents to accepted quotes
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ require_once '../includes/ajax_header.php';
|
||||||
$sql = mysqli_query($mysqli, "SELECT * FROM notifications
|
$sql = mysqli_query($mysqli, "SELECT * FROM notifications
|
||||||
WHERE notification_user_id = $session_user_id
|
WHERE notification_user_id = $session_user_id
|
||||||
AND notification_dismissed_at IS NULL
|
AND notification_dismissed_at IS NULL
|
||||||
ORDER BY notification_id DESC LIMIT 8"
|
ORDER BY notification_id"
|
||||||
);
|
);
|
||||||
|
|
||||||
$num_notifications = mysqli_num_rows($sql);
|
$num_notifications = mysqli_num_rows($sql);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue