diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-11-11 19:59:11 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-11-11 19:59:11 +0000 |
commit | f27262413b5ef712d16dc45d953c2ab04d7749db (patch) | |
tree | 916b8134b38b89fee56b40f3c11a9e49ce9c27bb /plugins | |
parent | ee1186fba4bcdfca2e056a86f72030818d7bcdf0 (diff) |
CrashDumper: Remove "you have -1 old plugins" message
git-svn-id: http://svn.miranda-ng.org/main/trunk@10961 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CrashDumper/src/upload.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/CrashDumper/src/upload.cpp b/plugins/CrashDumper/src/upload.cpp index e49d2825c4..ef12a85b1a 100644 --- a/plugins/CrashDumper/src/upload.cpp +++ b/plugins/CrashDumper/src/upload.cpp @@ -130,13 +130,7 @@ bool InternetDownloadFile(const char *szUrl, VerTrnsfr* szReq) if (db_get_b(NULL, PluginName, "UploadChanged", 0))
ProcessVIHash(true);
- for (i = nlhrReply->headersCount; i--;)
- if (_stricmp(nlhrReply->headers[i].szName, "OldPlugins") == 0) {
- i = atoi(nlhrReply->headers[i].szValue);
- break;
- }
-
- ShowMessage(1, TranslateT("VersionInfo upload successful,\n %d old plugins"), i);
+ ShowMessage(1, TranslateT("VersionInfo upload successful."));
result = 0;
break;
|