small html change adding id tag

pull/366/head
Peter Goodhall 2019-10-05 23:21:52 +01:00
rodzic 71c3556a8b
commit 8a601e3c5e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -161,7 +161,7 @@
<div class="tab-pane fade" id="station" role="tabpanel" aria-labelledby="station-tab">
<div class="form-group">
<label for="inputStationProfile">Station Profile</label>
<select class="custom-select" name="station_profile">
<select id="stationProfile" class="custom-select" name="station_profile">
<option value="0" selected="selected">None</option>
<?php foreach ($stations->result() as $stationrow) { ?>
<option value="<?php echo $stationrow->station_id; ?>" <?php if($this->session->userdata('station_profile_id') == $stationrow->station_id) { echo "selected=\"selected\""; } ?>><?php echo $stationrow->station_profile_name; ?></option>