Skip to content

Commit

Permalink
Merge pull request #733 from coral-erm/ERM-104
Browse files Browse the repository at this point in the history
Home page licenses loading error fix
  • Loading branch information
andyp-uk authored Oct 17, 2023
2 parents d97e3a3 + 1ecd008 commit 83e1278
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion licensing/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function updateSearch(){
type: "GET",
url: "ajax_htmldata.php",
cache: false,
data: "action=getSearchLicenses&organizationID=" + $("#organizationID").val() + "&consortiumID=" + $("#consortiumID").val() + "&shortName=" + $("#searchName").val() + "&statusID=" + $("#statusID").val() + "&documentTypeID=" + $("#documentTypeID").val() + "&expressionTypeID=" + $("#expressionTypeID").val() + "&qualifierID=" + $("#qualifierID").val() + "&termsToolIndOn=" + getCheckboxValue('termsToolIndOn') + "&termsToolIndOff=" + getCheckboxValue('termsToolIndOff') + "&orderBy=" + orderBy + "&pageStart=" + pageStart + "&numberOfRecords=" + numberOfRecords + "&startWith=" + startWith,
data: "action=getSearchLicenses&organizationID=" + $("#organizationID").val() + "&consortiumID=" + $("#consortiumID").val() + "&shortName=" + $("#searchName").val() + "&statusID=" + $("#statusID").val() + "&documentTypeID=" + $("#documentTypeID").val() + "&expressionTypeID=" + $("#expressionTypeID").val() + "&qualifierID=" + $("#qualifierID").val() + "&orderBy=" + orderBy + "&pageStart=" + pageStart + "&numberOfRecords=" + numberOfRecords + "&startWith=" + startWith,
success: function(html) {
$("#div_feedback").html(" ");
$('#searchResults').html(html);
Expand Down
2 changes: 1 addition & 1 deletion management/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function updateSearch(){
type: "GET",
url: "ajax_htmldata.php",
cache: false,
data: "action=getSearchLicenses&organizationID=" + $("#organizationID").val() + "&consortiumID=" + $("#consortiumID").val() + "&shortName=" + $("#searchName").val() + "&statusID=" + $("#statusID").val() + "&documentTypeID=" + $("#documentTypeID").val() + "&expressionTypeID=" + $("#expressionTypeID").val() + "&qualifierID=" + $("#qualifierID").val() + "&termsToolIndOn=" + getCheckboxValue('termsToolIndOn') + "&termsToolIndOff=" + getCheckboxValue('termsToolIndOff') + "&orderBy=" + orderBy + "&pageStart=" + pageStart + "&numberOfRecords=" + numberOfRecords + "&startWith=" + startWith,
data: "action=getSearchLicenses&organizationID=" + $("#organizationID").val() + "&consortiumID=" + $("#consortiumID").val() + "&shortName=" + $("#searchName").val() + "&statusID=" + $("#statusID").val() + "&documentTypeID=" + $("#documentTypeID").val() + "&expressionTypeID=" + $("#expressionTypeID").val() + "&qualifierID=" + $("#qualifierID").val() + "&orderBy=" + orderBy + "&pageStart=" + pageStart + "&numberOfRecords=" + numberOfRecords + "&startWith=" + startWith,
success: function(html) {
$("#div_feedback").html(" ");
$('#searchResults').html(html);
Expand Down

0 comments on commit 83e1278

Please sign in to comment.