mirror of https://github.com/itflow-org/itflow
check to see if var is set to prevent undecaled php var errors
This commit is contained in:
parent
d6916c8d4b
commit
e10bd46295
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Reference in New Issue