mirror of
https://github.com/itflow-org/itflow
synced 2026-03-09 07:14:51 +00:00
Changelog Update, Allow to view unlimited notifications
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user