mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
More UI work and santitizeInput migrations
This commit is contained in:
@@ -46,10 +46,10 @@
|
||||
<div class="dropdown-divider"></div>
|
||||
<?php
|
||||
while ($row = mysqli_fetch_array($sql_notifications)) {
|
||||
$notification_id = $row['notification_id'];
|
||||
$notification_id = intval($row['notification_id']);
|
||||
$notification_type = htmlentities($row['notification_type']);
|
||||
$notification = htmlentities($row['notification']);
|
||||
$notification_timestamp = $row['notification_timestamp'];
|
||||
$notification_timestamp = htmlentities($row['notification_timestamp']);
|
||||
?>
|
||||
|
||||
<a href="post.php?dismiss_notification=<?php echo $notification_id; ?>" class="dropdown-item">
|
||||
|
||||
Reference in New Issue
Block a user