aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 562032d..d7cffb9 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -2265,12 +2265,12 @@ namespace OpenSim.Framework.Servers.HttpServer
2265 // Fallback HTTP responses in case the HTTP error response files don't exist 2265 // Fallback HTTP responses in case the HTTP error response files don't exist
2266 private static string getDefaultHTTP404(string host) 2266 private static string getDefaultHTTP404(string host)
2267 { 2267 {
2268 return "<HTML><HEAD><TITLE>404 Page not found</TITLE><BODY><BR /><H1>Ooops!</H1><P>The page you requested has been obsconded with by knomes. Find hippos quick!</P><P>If you are trying to log-in, your link parameters should have: &quot;-loginpage http://" + host + "/?method=login -loginuri http://" + host + "/&quot; in your link </P></BODY></HTML>"; 2268 return "<HTML><HEAD><TITLE>404 Page not found</TITLE><BODY><BR /><H1>Ooops!</H1><P>The page you requested doesn't exist.</P><P>If you are trying to log-in, your link parameters should have: &quot;-loginpage http://" + host + "/?method=login -loginuri http://" + host + "/&quot; in your link.</P><</BODY></HTML>";
2269 } 2269 }
2270 2270
2271 private static string getDefaultHTTP500() 2271 private static string getDefaultHTTP500()
2272 { 2272 {
2273 return "<HTML><HEAD><TITLE>500 Internal Server Error</TITLE><BODY><BR /><H1>Ooops!</H1><P>The server you requested is overun by knomes! Find hippos quick!</P></BODY></HTML>"; 2273 return "<HTML><HEAD><TITLE>500 Internal Server Error</TITLE><BODY><BR /><H1>Ooops!</H1><P>The server had some sort of internal error.</P></BODY></HTML>";
2274 } 2274 }
2275 } 2275 }
2276 2276