Ignore:
Timestamp:
2022-09-06T15:44:04+12:00 (22 months ago)
Author:
davidb
Message:

Changed to using square brackets for displaying short collection name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/cdm/SuperCollectionManager.java

    r22410 r36580  
    230230          StringBuffer title_buffer = new StringBuffer(collect_cfg.getName());
    231231          title_buffer.append(StaticStrings.SPACE_CHARACTER);
    232           title_buffer.append(StaticStrings.OPEN_PARENTHESIS_CHARACTER);
     232          title_buffer.append(StaticStrings.LBRACKET_CHARACTER);
    233233          title_buffer.append(collect_cfg.getShortName());
    234           title_buffer.append(StaticStrings.CLOSE_PARENTHESIS_CHARACTER);
     234          title_buffer.append(StaticStrings.RBRACKET_CHARACTER);
    235235          String collection_title = title_buffer.toString();
    236236          title_buffer = null;
Note: See TracChangeset for help on using the changeset viewer.