mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2024-12-27 21:35:41 +00:00
Heineus bug fixed.
This commit is contained in:
parent
2e4d869370
commit
c6955cd8b9
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ namespace tawashi {
|
|||
statuslog->info("Redirecting to error page, code={} reason={}", parCode, parReason);
|
||||
|
||||
std::ostringstream oss;
|
||||
oss << "error.cgi?code=" << parCode << "&reason=" << parReason._to_integral();
|
||||
oss << "error.cgi?code=" << parCode._to_integral() << "&reason=" << parReason._to_integral();
|
||||
return make_redirect(parCode, oss.str());
|
||||
}
|
||||
} //namespace tawashi
|
||||
|
|
Loading…
Reference in a new issue