diff options
| author | callum <none@none> | 2009-12-08 17:25:00 -0800 | 
|---|---|---|
| committer | callum <none@none> | 2009-12-08 17:25:00 -0800 | 
| commit | b37fab7a5d5a6eedf8567a3f2704b36c98a2645d (patch) | |
| tree | 1fc9139019fa0f332296a3f926c28ca74ef68d6d /indra/newview | |
| parent | e07ef0d0e0e8cbd58afd4c6ee970634bd2f783e7 (diff) | |
Web teams needs us to support 403 response codes for some trickery they are doing with Help pages.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 952de00272..585ac4f8e9 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -172,6 +172,11 @@ public:  			completeAny(status, "text/html");  		}  		else +		if(status == 403) +		{ +			completeAny(status, "text/html"); +		} +		else  		if(status == 404)  		{  			// 404 is content not found - sites often have bespoke 404 pages so  | 
