Changeset 7103


Ignore:
Timestamp:
2004-03-22T13:28:57+12:00 (20 years ago)
Author:
kjdon
Message:

added '-gli -language xx' to the exportcol.pl args

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/ExportCollectionPrompt.java

    r6790 r7103  
    259259    cd_title = cd_title.trim();
    260260    cd_title = cd_title.replaceAll("\"","");
    261     int num_args = num_collections + 1;
     261    int num_args = num_collections + 4;
    262262    boolean has_title = false;
    263263    if (!cd_title.equals("")) {
     
    278278    args[next_arg] = Gatherer.config.getScriptPath() + "exportcol.pl";
    279279    next_arg++;
     280    args[next_arg] = "-gli"; next_arg++;
     281    args[next_arg] = "-language"; next_arg++;
     282    args[next_arg] = Gatherer.config.getLanguage(); next_arg++;
     283
    280284    if (has_title) {
    281285        args[next_arg] = "-cdname"; next_arg++;
Note: See TracChangeset for help on using the changeset viewer.