mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
check to see if var is set to prevent undecaled php var errors
This commit is contained in:
@@ -224,7 +224,7 @@
|
||||
|
||||
<div class="card-body">
|
||||
<form class="mb-4" autocomplete="off">
|
||||
<input type="hidden" name="status" value="<?php echo $_GET['status']; ?>">
|
||||
<input type="hidden" name="status" value="<?php if(isset($_GET['status'])){ echo $_GET['status']; } ?>">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="input-group">
|
||||
|
||||
Reference in New Issue
Block a user