Skip to content

Commit

Permalink
Merge pull request #1132 from garberg/reenable_history
Browse files Browse the repository at this point in the history
Re-enable parsing of query string in URL
  • Loading branch information
plajjan authored Mar 28, 2017
2 parents 55ab5d7 + dc72bf7 commit 3c2f69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nipap-www/nipapwww/templates/prefix_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
function handleUrlQuery() {

// Is there a query string in the URL?
if ($.url().fparam('query_string') == null) {
if ($.url().fparam('/query_string') == null) {
return true;
}

// query_string
$("#query_string").val(decodeURIComponent($.url().fparam('query_string')));
$("#query_string").val(decodeURIComponent($.url().fparam('/query_string')));

// search_opt_parent
if ($.url().fparam('search_opt_parent') != null) {
Expand Down

0 comments on commit 3c2f69f

Please sign in to comment.