diff Core/HttpServer/FilesystemHttpHandler.cpp @ 1042:8d1845feb277

set cookies, not allowed methods, unauthorized in plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Jul 2014 15:55:40 +0200
parents e078ea944089
children ba5c0908600c
line wrap: on
line diff
--- a/Core/HttpServer/FilesystemHttpHandler.cpp	Thu Jul 17 14:14:15 2014 +0200
+++ b/Core/HttpServer/FilesystemHttpHandler.cpp	Thu Jul 17 15:55:40 2014 +0200
@@ -136,7 +136,7 @@
 
     if (method != HttpMethod_Get)
     {
-      output.SendMethodNotAllowedError("GET");
+      output.SendMethodNotAllowed("GET");
       return true;
     }