Changeset 12485


Ignore:
Timestamp:
2006-08-18T17:14:10+12:00 (18 years ago)
Author:
mdewsnip
Message:

The username of the person submitting translations is now passed to gti.pl so it can be recorded.

File:
1 edited

Legend:

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

    r12474 r12485  
    451451  text_t target_language_code = args["tlc"];
    452452  text_t translation_file_key = args["tfk"];
     453  text_t submitter_username = args["un"];
    453454
    454455  // Submitted chunk arguments contain the language code followed by "::"
     
    486487
    487488  // Send the submission to gti.pl
    488   text_t gti_arguments = "submit-translations " + target_language_code + " " + translation_file_key;
     489  text_t gti_arguments = "submit-translations " + target_language_code + " " + translation_file_key + " " + submitter_username;
    489490  if (force_submission) {
    490491    gti_arguments += " -force_submission";
Note: See TracChangeset for help on using the changeset viewer.