Ignore:
Timestamp:
2004-01-22T13:54:55+13:00 (20 years ago)
Author:
jmt12
Message:

A whole bunch of files right in the middle of being edited because Michael is being awkward and expecting me to commit stuff regular like.

File:
1 edited

Legend:

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

    r6318 r6582  
    4747
    4848    static public boolean titleClashes(String title, File current_config_file) {
     49    // An empty collection title never clashes with anything. I may look ugly in the final collection but there is nothing wrong with having no title for a particular language.
     50    if(title == null || title.length() == 0) {
     51        return false;
     52    }
    4953    File collection_directory = new File(Utility.getCollectionDir(Gatherer.config.gsdl_path));
    5054    File children[] = collection_directory.listFiles();
Note: See TracChangeset for help on using the changeset viewer.