Skip to content
Snippets Groups Projects
Commit 2854f135 authored by Andrew Vincent Pover's avatar Andrew Vincent Pover
Browse files

Update page feedback widget to ignore empty feedback

parent 798035f8
No related branches found
No related tags found
2 merge requests!55Beta hasn't exploded, lets push these to live,!52Master
Pipeline #
......@@ -5,7 +5,7 @@
$contact = "devel@lists.sucs.org";
if ($session->loggedin) {
if ($_REQUEST["action"] == "feedback") {
if ($_REQUEST["action"] == "feedback" && $_REQUEST["feedback"] != "") {
$feedback = $_REQUEST["feedback"];
$msgbody = "{$session->username} had this to say about the page {$_SERVER['REQUEST_URI']}:\r\n\r\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment