diff options
| author | 2010-09-18 14:50:43 +0000 | |
|---|---|---|
| committer | 2010-09-18 14:50:43 +0000 | |
| commit | 80a96df755425ff86229fb89fb81b7c8fc122674 (patch) | |
| tree | da081236cdf7ad8d8ba75a10f93cc17ed917f9b2 /src/modules/http | |
| parent | userlist: implemented "select next matching nick" on consecutive press of the... (diff) | |
| download | KVIrc-80a96df755425ff86229fb89fb81b7c8fc122674.tar.gz KVIrc-80a96df755425ff86229fb89fb81b7c8fc122674.tar.bz2 KVIrc-80a96df755425ff86229fb89fb81b7c8fc122674.zip | |
implemented escaping for event handler parameters; please double check your scripts against this change and report any incompatibility!
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5014 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/http')
| -rw-r--r-- | src/modules/http/httpfiletransfer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/http/httpfiletransfer.cpp b/src/modules/http/httpfiletransfer.cpp index 6ad900741..5205c42e2 100644 --- a/src/modules/http/httpfiletransfer.cpp +++ b/src/modules/http/httpfiletransfer.cpp @@ -419,9 +419,9 @@ void KviHttpFileTransfer::transferTerminated(bool bSuccess) m_tTransferEndTime = kvi_unixTime(); KviKvsVariantList vParams; - vParams.append(new KviKvsVariant(bSuccess)); - vParams.append(new KviKvsVariant(m_pHttpRequest->url().url())); - vParams.append(new KviKvsVariant(m_pHttpRequest->fileName())); + vParams.append(bSuccess); + vParams.append(new KviKvsVariant(m_pHttpRequest->url().url(), true)); + vParams.append(new KviKvsVariant(m_pHttpRequest->fileName(), true)); vParams.append(new KviKvsVariant(m_vMagicIdentifier)); if(m_szCompletionCallback.isNull()) |
