Ignore:
Timestamp:
2004-05-25T16:31:41+12:00 (20 years ago)
Author:
mdewsnip
Message:

(Human Info) Added language parameter to all calls of get_info, get_children, has_children, and get_contents. Also, removed some of the modifications so it compiles again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/authenaction.cpp

    r7425 r7432  
    162162                       cgiargsclass &args,
    163163                       outconvertclass &outconvert,
    164                        const text_tarray &saveconf,
     164                       const text_t &saveconf,
    165165                       ostream &logout) {
    166166
     
    310310
    311311  // get a list of saved configuration arguments (if possible)
     312  text_t saveconf;
    312313  text_tset saveconfset;
    313314  if (recpt != NULL) {
    314     text_tarray::const_iterator thisSaveConf = recpt->get_configinfo().saveconf.begin();
    315     text_tarray::const_iterator endSaveConf = recpt->get_configinfo().saveconf.end();
    316     while (thisSaveConf != endSaveConf) {
    317       saveconfset.insert(*thisSaveConf);
    318       ++thisSaveConf;
    319     }
     315    saveconf = recpt->get_configinfo().saveconf;
     316    splitchar (saveconf.begin(), saveconf.end(), '-', saveconfset);
    320317  }
    321318 
Note: See TracChangeset for help on using the changeset viewer.