Ignore:
Timestamp:
2003-06-13T16:29:32+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed to use the new interface language variable in Configuration instead of the (incorrect) default language used for partition indexes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/custom/CustomAZList.java

    r4631 r4656  
    629629    }
    630630    else {
    631         Language default_language = Gatherer.c_man.getCollection().cdm.languages.getDefaultLanguage();
    632         hidden_mde = hidden_mds.addElement(element.toString().replace('.','_'), default_language.getCode());
     631        String language_code = Gatherer.config.interface_language.getCode();
     632        hidden_mde = hidden_mds.addElement(element.toString().replace('.','_'), language_code);
    633633        found = false;
    634634    }
Note: See TracChangeset for help on using the changeset viewer.