diff options
author | Nos- <Nos-@users.noreply.github.com> | 2018-08-28 12:38:32 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-08-28 18:33:15 +0200 |
commit | bd8ceda6830f97247b73932b85ce41af5b8d2ab0 (patch) | |
tree | 7823dd6fe70ab55434a9020993f0c41161eac632 /includes/sys_form.php | |
parent | ac6361b51bed8f9d3b540c2604d6750bf5ada535 (diff) |
Revert "Tried to fix inputfields for date, email, tel"
This reverts commit 80f3bb5154a215d9fb5627559fa240acccab09c4.
Diffstat (limited to 'includes/sys_form.php')
-rw-r--r-- | includes/sys_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_form.php b/includes/sys_form.php index ef0c877a..c974c1d1 100644 --- a/includes/sys_form.php +++ b/includes/sys_form.php @@ -68,7 +68,7 @@ function form_date($name, $label, $value, $start_date = '', $end_date = '') $end_date = is_numeric($end_date) ? date('Y-m-d', $end_date) : ''; return form_element($label, ' <div class="input-group date" id="' . $dom_id . '"> - <input type="date" name="' . $name . '" class="form-control" value="' . htmlspecialchars($value) . '">' + <input name="' . $name . '" class="form-control" value="' . htmlspecialchars($value) . '">' . '<span class="input-group-addon">' . glyph('th') . '</span> </div> <script type="text/javascript"> |