Removed unnessesary line from add_ticket that was meant for edit ticket was casuing php to throw undefined client_id var

This commit is contained in:
johnny@pittpc.com
2021-02-02 21:16:21 -05:00
parent 089016265c
commit a3aae0d955
2 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@
$client_id = $row['client_id'];
$client_name = $row['client_name'];
?>
<option <?php if($_GET['client_id'] == $client_id) { echo "selected"; } ?> value="<?php echo "$client_id"; ?>"><?php echo "$client_name"; ?></option>
<option value="<?php echo $client_id; ?>"><?php echo "$client_name"; ?></option>
<?php
}