Ignore:
Timestamp:
2006-09-18T15:25:40+12:00 (18 years ago)
Author:
mdewsnip
Message:

Changed the new "fuzziness" argument to take an integer instead of a float, since dots just make things more difficult.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/querytools.cpp

    r12770 r12771  
    153153  }
    154154
    155   if (!args["fuzziness"].empty()) { // fuzziness value for lucene
     155  if (!args["fuzziness"].empty() && args["fuzziness"] != "100") { // fuzziness value for lucene
    156156    option.name = "Fuzziness";
    157     option.value = args["fuzziness"];
     157    option.value = (text_t) "0." + args["fuzziness"];
    158158    request.filterOptions.push_back (option);
    159159  }
Note: See TracChangeset for help on using the changeset viewer.