diff --git a/guest_post.php b/guest_post.php index a1cffd80..eb5bedd1 100644 --- a/guest_post.php +++ b/guest_post.php @@ -118,7 +118,9 @@ if (isset($_GET['add_ticket_feedback'], $_GET['url_key'])) { mysqli_query($mysqli, "UPDATE tickets SET ticket_feedback = '$feedback' WHERE ticket_id = $ticket_id AND ticket_url_key = '$url_key'"); // Notify on bad feedback if ($feedback == "Bad") { - appNotify("Feedback", "Guest rated ticket ID $ticket_id as bad"); + appNotify("Feedback", "Guest rated ticket ID $ticket_id as bad!", "ticket.php?ticket_id=$ticket_id"); + } else { + appNotify("Feedback", "Guest rated ticket ID $ticket_id as good. Fuck ya bud!", "ticket.php?ticket_id=$ticket_id"); } $_SESSION['alert_message'] = "Feedback recorded - thank you"; diff --git a/top_nav.php b/top_nav.php index 1c5e3765..45dded45 100644 --- a/top_nav.php +++ b/top_nav.php @@ -10,11 +10,46 @@