Fixed early use of variable

This commit is contained in:
Fred Boniface 2022-09-17 21:04:19 +01:00
parent b5da264ce6
commit cb66028b77
1 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@
$subject = $detail = "";
$ua_str = $_SERVER["HTTP_USER_AGENT"];
// Define response variable as blank before POSTing
$giteaResponse = "";
if ($_SERVER["REQUEST_METHOD"] == "POST" ) {
$subject = validate($_POST["subject"]);
$detail = validate($_POST["detail"]);
@ -92,7 +95,7 @@
</form>
<p>You have submitted:</p>
<p><?php echo $giteaResponse;?>
<p><?php echo $giteaResponse;}?>
<!-- Footer -->
<footer>