Replaced old notification with new appNotify in all the Guest_ PHP Scripts

This commit is contained in:
johnnyq
2024-11-07 12:13:05 -05:00
parent 53724c3012
commit a5cd1e1f1a
5 changed files with 14 additions and 12 deletions

View File

@@ -81,7 +81,7 @@ $client_id = intval($row['item_client_id']);
$item_type_sql_escaped = sanitizeInput($row['item_type']);
$item_recipient_sql_escaped = sanitizeInput($row['item_recipient']);
mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Share Viewed', notification = '$item_type_sql_escaped has been viewed by $item_recipient_sql_escaped', notification_action = 'client_overview.php?client_id=$client_id', notification_client_id = $client_id, notification_entity_id = $item_id");
appNotify("Share Viewed", "$item_type_sql_escaped has been viewed by $item_recipient_sql_escaped", "client_overview.php?client_id=$client_id", $client_id);
?>