Change 'Files' tag to 'Upload' in Upload.xml

This commit is contained in:
Zach Mullen 2011-02-28 10:53:38 -05:00 committed by Brad King
parent 350546db3a
commit fbe435652d
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ int cmCTestUploadHandler::ProcessHandler()
<< cmVersion::GetCMakeVersion()
<< "\">\n";
this->CTest->AddSiteProperties(ofs);
ofs << "<Files>\n";
ofs << "<Upload>\n";
for ( it = this->Files.begin(); it != this->Files.end(); it ++ )
{
@ -71,7 +71,7 @@ int cmCTestUploadHandler::ProcessHandler()
ofs << "\n</Content>\n"
<< "</File>\n";
}
ofs << "</Files>\n"
ofs << "</Upload>\n"
<< "</Site>\n";
return 0;
}