Ignore:
Timestamp:
2002-09-13T14:32:40+12:00 (22 years ago)
Author:
jrm21
Message:

Don't save the collect.cfg cgi argument if regetting a user password.

File:
1 edited

Legend:

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

    r2212 r3423  
    297297    // set this as a hidden argument if it came from the cgi arguments,
    298298    // its not the compressed arguments, the query string, a user name or
    299     // password, and if it is not in the compressed arguments
     299    // password, or collect.cfg, and if it is not in the compressed arguments
    300300    if ((*args_here).second.source == cgiarg_t::cgi_arg &&
    301301    (*args_here).first != "e" && (*args_here).first != "q" &&
    302302    (*args_here).first != "un" && (*args_here).first != "pw" &&
     303    (*args_here).first != "cfgfile" &&
    303304    saveconfset.find((*args_here).first) == saveconfset.end()) {
    304305      hiddenargs += "<input type=hidden name=\"" + (*args_here).first +
    305306    "\" value=\"_cgiarg" + (*args_here).first + "_\">\n";
    306307    }
    307    
    308308    args_here++;
    309309  }
Note: See TracChangeset for help on using the changeset viewer.