diff options
author | Denis Serdjuk <dserduk@productengine.com> | 2010-02-19 15:29:17 +0200 |
---|---|---|
committer | Denis Serdjuk <dserduk@productengine.com> | 2010-02-19 15:29:17 +0200 |
commit | fcd34cbe8e1fd90edd26486b7d2d004109b8fab7 (patch) | |
tree | c45cddc9bc51cfe701507b3169f8fefbe80bc101 | |
parent | e341b84503f71e519d4d7f59117ebbe4210d4287 (diff) |
Rolling back a previous fix EXT-5380. More convenient approach has been founded.
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llurldispatcher.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/indra/newview/llurldispatcher.cpp b/indra/newview/llurldispatcher.cpp index 257afabdcc..0b6bd4b401 100644 --- a/indra/newview/llurldispatcher.cpp +++ b/indra/newview/llurldispatcher.cpp @@ -223,17 +223,6 @@ void LLURLDispatcherImpl::regionNameCallback(U64 region_handle, const std::strin S32 z = 0; LLURLSimString::parse(sim_string, ®ion_name, &x, &y, &z); - // Invalid location? EXT-5380 - if (!region_handle) - { - if(!region_name.empty() && !LLStringOps::isDigit(region_name.c_str()[0]))// it is no sense to search an empty region_name or when the region_name starts with digits - { - // may be an user types incorrect region name, let's help him to find a correct one - LLFloaterReg::showInstance("search", LLSD().with("category", "places").with("id", LLSD(region_name))); - } - //*TODO: add notification about invalid region_name - return; - } LLVector3 local_pos; local_pos.mV[VX] = (F32)x; local_pos.mV[VY] = (F32)y; |