Points are now only counted if it is selected
This commit is contained in:
@@ -14,10 +14,12 @@
|
||||
$station_id = sanitize_input($_POST['station_id']);
|
||||
$station_name = sanitize_input($_POST['station_name']);
|
||||
$station_pos = sanitize_input($_POST['station_pos']);
|
||||
$station_gewertet = sanitize_input($_POST['gewertet']);
|
||||
$station = get_station_all($con, $station_id)->fetch();
|
||||
$s_id = intval($station['s_id']);
|
||||
$name = strval($station['name']);
|
||||
$standort = strval($station['standort']);
|
||||
$gewertet = intval($station['gewertet']);
|
||||
if($name != $station_name) {
|
||||
update_station_name($con, $s_id, $station_name);
|
||||
}
|
||||
@@ -25,6 +27,10 @@
|
||||
if($standort != $station_pos) {
|
||||
update_station_pos($con, $s_id, $station_pos);
|
||||
}
|
||||
|
||||
if($gewertet != $station_gewertet) {
|
||||
update_station_gewertet($con, $s_id, $station_gewertet);
|
||||
}
|
||||
header("Location: stationen.php");
|
||||
die;
|
||||
}
|
||||
@@ -47,6 +53,13 @@
|
||||
<span></span>
|
||||
<label for="station_pos">Stations Standort:</label>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<label for="gewertet">Wertung:</label>
|
||||
<select name="gewertet" id="gewertet">
|
||||
<option value="1" <?php if($row['gewertet'] == '1'){echo " selected";}?>>Ja</option>
|
||||
<option value="0" <?php if($row['gewertet'] == '0'){echo " selected";}?>>Nein</option>
|
||||
</select>
|
||||
</div>
|
||||
<input type="hidden" name="station_id" <?php echo "value=\"" . $row ['s_id'] . "\""?>/>
|
||||
<input type="submit" value="Speichern" class="btn-confirm"/>
|
||||
</form>
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
<tr>
|
||||
<th scope="col">Name</th>
|
||||
<th scope="col">Standort</th>
|
||||
<th scope="col">Gewertet</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
Reference in New Issue
Block a user