diff options
author | Richard Linden <none@none> | 2010-12-08 15:26:36 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2010-12-08 15:26:36 -0800 |
commit | c28b476a6806a426593e6798ea537f13ca354fc8 (patch) | |
tree | 642439525869f0ea500711959de10e7e7a5f82a7 /indra/newview | |
parent | 1e050c2ed87ae2093623fa4c66a69aeee1fb980c (diff) |
EXP-448 FIX Notification not found error for NofileExtension given when uploading file with no file extension during Bulk Upload
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewermenufile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermenufile.cpp b/indra/newview/llviewermenufile.cpp index 048691696b..b7be3bc5b3 100644 --- a/indra/newview/llviewermenufile.cpp +++ b/indra/newview/llviewermenufile.cpp @@ -505,7 +505,7 @@ void upload_new_resource(const std::string& src_filename, std::string name, "No file extension for the file: '%s'\nPlease make sure the file has a correct file extension", short_name.c_str()); args["FILE"] = short_name; - upload_error(error_message, "NofileExtension", filename, args); + upload_error(error_message, "NoFileExtension", filename, args); return; } else if( exten == "bmp") |