Fix bug 204: use better parameter name.

Hui-Organize
Lan Hui 2024-10-08 09:41:45 +08:00
parent 5ce55c3f1e
commit 1f602e3db2
1 changed files with 2 additions and 2 deletions

View File

@ -647,11 +647,11 @@ include 'Header.php';
function remarking(data)
function remarking(url)
{
const details = prompt("Please enter your remarking reasons","");
if (details != null) {
window.location.href = data+"&details="+details;
window.location.href = url+"&details="+details;
}
}