diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-08-20 12:04:57 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-08-20 12:04:57 +0300 |
commit | 41d2a60cba059539e708380f8964dea45a119546 (patch) | |
tree | 9ff1664948fa0a63a001d74546ae0d63484fbab4 /indra | |
parent | 0735380c60bb789aa8c1073699df8e473b083534 (diff) |
MAINT-5533 FIXED The fragment part of an URI is only shown if it contains a query part as well.
fix by Ansariel
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/lluriparser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcommon/lluriparser.cpp b/indra/llcommon/lluriparser.cpp index d98bc297e5..82d0dc8b4b 100644 --- a/indra/llcommon/lluriparser.cpp +++ b/indra/llcommon/lluriparser.cpp @@ -238,12 +238,12 @@ void LLUriParser::glueSecond(std::string& uri) const { uri += '?'; uri += mQuery; + } - if (mFragment.size()) - { - uri += '#'; - uri += mFragment; - } + if (mFragment.size()) + { + uri += '#'; + uri += mFragment; } } |