diff options
author | Charles Krinke | 2008-07-11 15:40:56 +0000 |
---|---|---|
committer | Charles Krinke | 2008-07-11 15:40:56 +0000 |
commit | 1472cee72f984ff8001904303de13f2f8eace965 (patch) | |
tree | c73790884804009713981fb5a40e7302e00307f6 /OpenSim/Region/ClientStack/LindenUDP | |
parent | * Comment out body of experimental ParcelMediaSetTime() since MW says it caus... (diff) | |
download | opensim-SC_OLD-1472cee72f984ff8001904303de13f2f8eace965.zip opensim-SC_OLD-1472cee72f984ff8001904303de13f2f8eace965.tar.gz opensim-SC_OLD-1472cee72f984ff8001904303de13f2f8eace965.tar.bz2 opensim-SC_OLD-1472cee72f984ff8001904303de13f2f8eace965.tar.xz |
Mantis#1005. Thank you kindly, Mircea for a two patches that:
Addresses both locale issues and setting the waterHeight correctly.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 0e546db..8293319 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -715,6 +715,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
715 | /// </summary> | 715 | /// </summary> |
716 | protected virtual void AuthUser() | 716 | protected virtual void AuthUser() |
717 | { | 717 | { |
718 | |||
719 | //tell this thread we are using the culture set up for the sim (currently hardcoded to en_US) | ||
720 | //otherwise it will override this and use the system default | ||
721 | Culture.SetCurrentCulture(); | ||
722 | |||
718 | try | 723 | try |
719 | { | 724 | { |
720 | // AuthenticateResponse sessionInfo = m_gridServer.AuthenticateSession(m_cirpack.m_circuitCode.m_sessionId, m_cirpack.m_circuitCode.ID, m_cirpack.m_circuitCode.Code); | 725 | // AuthenticateResponse sessionInfo = m_gridServer.AuthenticateSession(m_cirpack.m_circuitCode.m_sessionId, m_cirpack.m_circuitCode.ID, m_cirpack.m_circuitCode.Code); |