Skip to content

Commit

Permalink
use 'query' variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey authored and jmcphers committed Oct 23, 2018
1 parent d63cc46 commit 2c8fe09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/session/modules/SessionHelp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ std::string normalizeHttpdSearchContent(const std::string& content)
if (query.find('<') != std::string::npos)
query = string_utils::htmlEscape(query);

return m[1] + string_utils::htmlEscape(m[2]) + m[3];
return m[1] + query + m[3];
});
}

Expand Down

0 comments on commit 2c8fe09

Please sign in to comment.