aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoronefang2019-08-06 15:09:30 +1000
committeronefang2019-08-06 15:09:30 +1000
commitd0ad108e57a79bab65535f9c390170331a83f6b9 (patch)
treec70e59f32d4288ce4d88118a63a242c066e5ab93 /OpenSim
parentReduce the width of the splash page divs. (diff)
downloadopensim-SC_OLD-d0ad108e57a79bab65535f9c390170331a83f6b9.zip
opensim-SC_OLD-d0ad108e57a79bab65535f9c390170331a83f6b9.tar.gz
opensim-SC_OLD-d0ad108e57a79bab65535f9c390170331a83f6b9.tar.bz2
opensim-SC_OLD-d0ad108e57a79bab65535f9c390170331a83f6b9.tar.xz
The knomes have been obsconded with by hippos.
Diffstat (limited to 'OpenSim')
-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 f4ba02f..c53c0ce 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -2135,12 +2135,12 @@ namespace OpenSim.Framework.Servers.HttpServer
2135 // Fallback HTTP responses in case the HTTP error response files don't exist 2135 // Fallback HTTP responses in case the HTTP error response files don't exist
2136 private static string getDefaultHTTP404(string host) 2136 private static string getDefaultHTTP404(string host)
2137 { 2137 {
2138 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>"; 2138 return "<HTML><HEAD><TITLE>404 Page not found</TITLE><BODY><BR /><H1>Ooops!</H1><P>The page you requested doesn't exist.</P></BODY></HTML>";
2139 } 2139 }
2140 2140
2141 private static string getDefaultHTTP500() 2141 private static string getDefaultHTTP500()
2142 { 2142 {
2143 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>"; 2143 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>";
2144 } 2144 }
2145 } 2145 }
2146 2146