Changeset 13919


Ignore:
Timestamp:
2007-02-15T11:24:51+13:00 (17 years ago)
Author:
kjdon
Message:

fixed up path for sites collect directories

File:
1 edited

Legend:

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

    r13195 r13919  
    102102        File [] sites = sites_dir.listFiles();
    103103        for (int i=0; i<sites.length; i++) {
    104         File collect_directory = new File(sites_dir + sites[i].getName() + File.separator + "collect");
     104        File collect_directory = new File(Gatherer.getSitesDirectoryPath() + sites[i].getName() + File.separator + "collect");
    105105        if (collect_directory.exists()) {
    106106            addCollectionsToModel(base_collection_model, collect_directory, sites[i].getName());
Note: See TracChangeset for help on using the changeset viewer.