Changeset 10922


Ignore:
Timestamp:
2005-11-23T11:43:22+13:00 (18 years ago)
Author:
kjdon
Message:

mgpp args, if build type is lucene, use ct=2 otherwise use ct=1 (mgpp). buildtype may be empty - defaults to mgpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/CreatePane.java

    r10726 r10922  
    641641    SearchTypeManager st_man = current_collection.cdm.searchtype_manager;
    642642    if (!Gatherer.GS3 && st_man.isSearchTypeEnabled()) {
    643         if (st_man.isMGPP()) {
     643        if (st_man.isLucene()) {
     644        extra_args = "&ct=2";
     645        } else { // MGPP default
    644646        extra_args = "&ct=1";
    645         } else if (st_man.isLucene()) {
    646         extra_args = "&ct=2";
    647647        }
    648648        // we need some more args on the url
Note: See TracChangeset for help on using the changeset viewer.