Skip to content

Commit

Permalink
fix regression in reference link
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent 8ea3e18 commit f12052e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/java/resource/context/admin/info/Info.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function loadRef() {
luceeRefData=JSON.parse(this.responseText.trim());
}
};
xhttp.open("GET", "/debug/modern/reference.cfm", true);
xhttp.open("GET", "/lucee/debug/modern/reference.cfm", true);
xhttp.send();
}

Expand Down Expand Up @@ -395,7 +395,7 @@ function luceeSearch(val,type) {
el.innerHTML= this.responseText;
}
};
xhttp.open("POST", "/debug/modern/reference.cfm", true);
xhttp.open("POST", "/lucee/debug/modern/reference.cfm", true);
xhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhttp.send("search=" + val + "&typ=" + type);
}
Expand Down Expand Up @@ -430,7 +430,7 @@ function luceeSearchAI(val) {
};


xhttp.open("POST", "/debug/modern/reference.cfm", true);
xhttp.open("POST", "/lucee/debug/modern/reference.cfm", true);
//xhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
var formData = new FormData();
formData.append("search", val);
Expand Down

0 comments on commit f12052e

Please sign in to comment.