diff options
-rwxr-xr-x | query.cgi | 1 | ||||
-rw-r--r-- | template/en/default/search/form.html.tmpl | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -129,6 +129,7 @@ sub PrefillForm { "bug_file_loc_type", "status_whiteboard", "status_whiteboard_type", "bug_id", "bugidtype", "keywords", "keywords_type", + "deadlinefrom", "deadlineto", "x_axis_field", "y_axis_field", "z_axis_field", "chart_format", "cumulate", "x_labels_vertical", "category", "subcategory", "name", "newcategory", diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index e9f2ba676..1df194c3d 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -326,10 +326,10 @@ function doOnSelectProduct(selectmode) { <label for="deadlinefrom" accesskey="l">Dead<u>l</u>ine</label>: </th> <td> - from - <input name="deadlinefrom" id="deadlinefrom" size="10" maxlength="10"> - to - <input name="deadlineto" size="10" maxlength="10"> + from <input name="deadlinefrom" id="deadlinefrom" size="10" maxlength="10" + value="[% default.deadlinefrom.0 FILTER html %]"> + to <input name="deadlineto" size="10" maxlength="10" + value="[% default.deadlineto.0 FILTER html %]"> </td> <td> <small>(YYYY-MM-DD)</small> |