Commit 824c1fb71d42e6b336b9ba5a2a2e89576ec5cc83
1 parent
e5edd421
KTS-3023
"Search2: The criteria uses both BEFORE and AFTER inclusively" Fixed. Committed By: Conrad Vermeulen Reviewed By: Philip Arkoll git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8053 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
templates/ktcore/search2/adv_query_builder.smarty
| ... | ... | @@ -176,9 +176,9 @@ function createRange(groupid, fid, type) |
| 176 | 176 | switch(type) |
| 177 | 177 | { |
| 178 | 178 | case 'DATE': |
| 179 | - html += "<option value=\"\>=\">{/literal}{i18n}after{/i18n}{literal}"; | |
| 179 | + html += "<option value=\"\>\">{/literal}{i18n}after{/i18n}{literal}"; | |
| 180 | 180 | html += "<option value=\"between\">{/literal}{i18n}between{/i18n}{literal}"; |
| 181 | - html += "<option value=\"<=\">{/literal}{i18n}before{/i18n}{literal}"; | |
| 181 | + html += "<option value=\"<\">{/literal}{i18n}before{/i18n}{literal}"; | |
| 182 | 182 | html += "<option value=\"is\">{/literal}{i18n}on{/i18n}{literal}"; |
| 183 | 183 | html += "<option value=\"is not\">{/literal}{i18n}not on{/i18n}{literal}"; |
| 184 | 184 | break; | ... | ... |