diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-09-05 21:05:14 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-09-05 21:05:14 -0700 |
commit | 9e0abf502762db98b6aab1aaec0508d339bddb92 (patch) | |
tree | 5b4d1868025adfb1117112f69a66e33e6933acf2 /httemplate/pref | |
parent | cf14219879b437bd63e15b77b96f55103a645531 (diff) |
add no_fuzzy_on_exact global, RT#24804
Diffstat (limited to 'httemplate/pref')
-rw-r--r-- | httemplate/pref/pref.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index dc44db0b0..d2b8835e7 100644 --- a/httemplate/pref/pref.html +++ b/httemplate/pref/pref.html @@ -108,6 +108,12 @@ Interface </TD> </TR> +% if ( FS::Conf->new->exists('enable_fuzzy_on_exact') ) { + + <INPUT TYPE="hidden" NAME="enable_fuzzy_on_exact" VALUE="<% $curuser->option('enable_fuzzy_on_exact') ? 1 : 0 %>"> + +% } else { + <TR> <TH ALIGN="right" COLSPAN=1>Enable approximate customer searching <BR>even when an exact match is found: </TH> <TD ALIGN="left" COLSPAN=2> @@ -115,6 +121,8 @@ Interface </TD> </TR> +% } + <TR> <TH ALIGN="right" COLSPAN=1>Disable HTML editor for customer notes: </TH> <TD ALIGN="left" COLSPAN=2> |