bug 384054 - wrong string used in crashreporter client ViewURL support. r=bsmedberg

This commit is contained in:
ted.mielczarek@gmail.com 2007-06-12 11:47:34 -07:00
parent ab1be9a46d
commit e92d228579

View File

@ -203,7 +203,7 @@ static bool AddSubmittedReport(const string& serverResponse)
if (responseItems.find("ViewURL") != responseItems.end()) {
UI_SNPRINTF(buf, 1024,
gStrings["ViewURL"].c_str(),
gStrings["CrashDetailsURL"].c_str(),
responseItems["ViewURL"].c_str());
file << buf << "\n";
}