Skip to content
Snippets Groups Projects
Commit 41d2a60c authored by AndreyL ProductEngine's avatar AndreyL ProductEngine
Browse files

MAINT-5533 FIXED The fragment part of an URI is only shown if it contains a query part as well.

fix by Ansariel
parent 0735380c
No related branches found
No related tags found
No related merge requests found
...@@ -185,6 +185,7 @@ Ansariel Hiller ...@@ -185,6 +185,7 @@ Ansariel Hiller
BUG-3764 BUG-3764
STORM-1984 STORM-1984
STORM-1979 STORM-1979
MAINT-5533
Aralara Rajal Aralara Rajal
Arare Chantilly Arare Chantilly
CHUIBUG-191 CHUIBUG-191
......
...@@ -238,12 +238,12 @@ void LLUriParser::glueSecond(std::string& uri) const ...@@ -238,12 +238,12 @@ void LLUriParser::glueSecond(std::string& uri) const
{ {
uri += '?'; uri += '?';
uri += mQuery; uri += mQuery;
}
if (mFragment.size()) if (mFragment.size())
{ {
uri += '#'; uri += '#';
uri += mFragment; uri += mFragment;
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment