Also keep timezone form data on error
这个提交包含在:
父节点
ece7fe534f
当前提交
4e70f77c20
共有 1 个文件被更改,包括 4 次插入 和 1 次删除
|
|
@ -76,7 +76,10 @@
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Timezone</label>
|
<label>Timezone</label>
|
||||||
<?php echo form_dropdown('user_timezone', $timezones, 0); ?>
|
<?php
|
||||||
|
if(!isset($user_timezone)) { $user_timezone = 0; }
|
||||||
|
echo form_dropdown('user_timezone', $timezones, $user_timezone);
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" />
|
<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" />
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用