aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorDiva Canto2014-11-21 08:54:30 -0800
committerDiva Canto2014-11-21 08:54:30 -0800
commit8d3cb424a8730a0d0cdea42e513057c2c3fff679 (patch)
tree611eb8cd3c3526e1f41058ed000e1c3f9f644cf8 /OpenSim/Services
parentCleanup extraneous comments from viewer support modules (diff)
parentLSL key should be implicitly cast to a boolean value (diff)
downloadopensim-SC_OLD-8d3cb424a8730a0d0cdea42e513057c2c3fff679.zip
opensim-SC_OLD-8d3cb424a8730a0d0cdea42e513057c2c3fff679.tar.gz
opensim-SC_OLD-8d3cb424a8730a0d0cdea42e513057c2c3fff679.tar.bz2
opensim-SC_OLD-8d3cb424a8730a0d0cdea42e513057c2c3fff679.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index b1aabe6..d2ff292 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -615,7 +615,7 @@ namespace OpenSim.Services.LLLoginService
615 // e.g. New Moon&135&46 New Moon@osgrid.org:8002&153&34 615 // e.g. New Moon&135&46 New Moon@osgrid.org:8002&153&34
616 where = "url"; 616 where = "url";
617 GridRegion region = null; 617 GridRegion region = null;
618 Regex reURI = new Regex(@"^uri:(?<region>[^&]+)&(?<x>\d+)&(?<y>\d+)&(?<z>\d+)$"); 618 Regex reURI = new Regex(@"^uri:(?<region>[^&]+)&(?<x>\d+[.]?\d*)&(?<y>\d+[.]?\d*)&(?<z>\d+[.]?\d*)$");
619 Match uriMatch = reURI.Match(startLocation); 619 Match uriMatch = reURI.Match(startLocation);
620 if (uriMatch == null) 620 if (uriMatch == null)
621 { 621 {