Ignore:
Timestamp:
2005-05-23T16:18:43+12:00 (19 years ago)
Author:
kjdon
Message:

modifications so that collectionmeta are read from the config file, not from the gdbm database, therefore they will update without rebuilding

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/maptools.cpp

    r9620 r9929  
    3434
    3535void stringmap::importmap (const text_tarray &maparray) {
    36   clear ();
     36  importmap(maparray, false);
     37}
     38
     39void stringmap::importmap (const text_tarray &maparray, bool keepold) {
     40  if (!keepold) {
     41    clear ();
     42  }
    3743 
    3844  text_tarray::const_iterator here = maparray.begin();
Note: See TracChangeset for help on using the changeset viewer.