Merge pull request #732 from AndreasK79/timeline_small_bugfix_in_form

[Timeline] Bugfix in form
这个提交包含在:
Peter Goodhall 2020-12-06 21:23:30 +00:00 提交者 GitHub
当前提交 a2d99b3aab
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -19,7 +19,7 @@
<label class="col-md-1 control-label" for="mode">Mode</label>
<div class="col-md-3">
<select id="mode" name="mode" class="form-control custom-select">
<option value="All" <?php if ($this->input->post('band') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> >All</option>
<option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> >All</option>
<?php
foreach($modes->result() as $mode){
if ($mode->submode == null) {