1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 15:03:12 +02:00

Fixed webpanel fail on nondebug builds

This commit is contained in:
Adam
2012-12-12 00:48:46 -05:00
parent 0edd26467e
commit dfff54425b
4 changed files with 4 additions and 16 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ class MyHTTPClient : public HTTPClient
if (sz == Anope::string::npos || !sz || sz + 1 >= token.length())
continue;
this->header.post_data[token.substr(0, sz)] = HTTPUtils::URLDecode(token.substr(sz + 1));
Log(LOG_DEBUG_2) << "HTTP POST from " << this->clientaddr.addr() << ": " << token.substr(0, sz) << ": " << this->header.post_data[token.substr(0, sz)];
Log(LOG_DEBUG_2) << "HTTP POST from " << this->clientaddr.addr() << ": " << token.substr(0, sz) << ": " << this->header.post_data[token.substr(0, sz)];
}
this->Serve();